{"id":21158229,"url":"https://github.com/simbo/action-semver-release-action","last_synced_at":"2026-04-20T14:04:59.059Z","repository":{"id":58037946,"uuid":"529725335","full_name":"simbo/action-semver-release-action","owner":"simbo","description":"A GitHub action to release actions with semantic versioning and move the major, minor and latest tags accordingly.","archived":false,"fork":false,"pushed_at":"2023-12-05T09:22:15.000Z","size":335,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-11T11:42:25.994Z","etag":null,"topics":["action","github-actions","release","semver","version"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simbo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-28T00:19:53.000Z","updated_at":"2022-09-06T09:28:11.000Z","dependencies_parsed_at":"2025-03-14T15:27:30.699Z","dependency_job_id":"2175b32e-e8b9-42b9-a91a-1faac5ccbf6c","html_url":"https://github.com/simbo/action-semver-release-action","commit_stats":{"total_commits":22,"total_committers":1,"mean_commits":22.0,"dds":0.0,"last_synced_commit":"0b81a3db202398bcfc00b7e90838042441ed2b10"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/simbo/action-semver-release-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simbo%2Faction-semver-release-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simbo%2Faction-semver-release-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simbo%2Faction-semver-release-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simbo%2Faction-semver-release-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simbo","download_url":"https://codeload.github.com/simbo/action-semver-release-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simbo%2Faction-semver-release-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32050454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["action","github-actions","release","semver","version"],"created_at":"2024-11-20T12:18:53.306Z","updated_at":"2026-04-20T14:04:59.039Z","avatar_url":"https://github.com/simbo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# simbo/action-semver-release-action\n\nA simple and lightning-fast GitHub action to create releases for actions based\non semantic version tags and move major, minor and latest tags accordingly.\n\n## Usage\n\nAdd `simbo/action-semver-release-action@latest` to your workflow.\n\nMake sure your tags have a valid semantic versioning format and start with a\n`v`.\n\nIf you create or push a version tag like `v1.2.3`, this action will move or\ncreate the tags `v1`, `v1.2` and `latest` to the same position and creates a\nGitHub release.\n\nThe action is meant to be run on a\n[`push:tags`](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-your-workflow-only-when-a-push-of-specific-tags-occurs)\nevent.\n\nUnfortunately, you still have to publish your action release to the GitHub\nmarketplace manually as there is no way to automate this at the moment.\n\n### Example\n\n```yml\nname: Release\n\non:\n  push:\n    tags:\n      - 'v*'\n\njobs:\n  release:\n    runs-on: ubuntu-latest\n    permissions: write-all\n    steps:\n      - name: 🛎 Checkout\n        uses: actions/checkout@v4\n\n      - name: 📦 Create Release\n        uses: simbo/action-semver-release-action@latest\n```\n\n## Inputs\n\n| Option           | Required | Default               | Description                                                            |\n| ---------------- | -------- | --------------------- | ---------------------------------------------------------------------- |\n| `token`          | no       | `${{ github.token }}` | GitHub Repo Access Token (needs permission to write tags and releases) |\n| `create-release` | no       | `'true'`              | whether to create a GitHub release                                     |\n| `release-name`   | no       | `'Release %TAG%'`     | The name of the created release                                        |\n| `release-body`   | no       | `''`                  | The description of the created release                                 |\n\nAll appearances of `%TAG%` in `release-name` and `release-body` will be replaced\nwith the version tag.\n\n## Development\n\n### Creating a new Version\n\nUse `./release.sh \u003cmajor|minor|patch\u003e` which will update `package.json` and\ncreate a git tag for the respective version.\n\nA release workflow will pick up the tag when pushed to GitHub, create a release\nand move major, minor and latest tags accordingly.\n\nTo publish the release into the GitHub marketplace open\n[releases](https://github.com/simbo/action-semver-release-action/releases) and\nupdate the release for marketplace publishing.\n\n## License and Author\n\n[MIT \u0026copy; 2022 Simon Lepel](http://simbo.mit-license.org/2022/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimbo%2Faction-semver-release-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimbo%2Faction-semver-release-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimbo%2Faction-semver-release-action/lists"}