{"id":20681704,"url":"https://github.com/108yen/changeset-release","last_synced_at":"2026-05-30T22:31:58.115Z","repository":{"id":259374860,"uuid":"866526694","full_name":"108yen/changeset-release","owner":"108yen","description":"This GitHub Action is an extract of the GitHub release creation process from the changesets GitHub Action.","archived":false,"fork":false,"pushed_at":"2026-05-23T02:14:15.000Z","size":3659,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-23T04:14:58.549Z","etag":null,"topics":["changesets","github-actions","release-automation"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/108yen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-02T12:27:44.000Z","updated_at":"2026-05-23T02:13:22.000Z","dependencies_parsed_at":"2024-10-24T23:42:54.939Z","dependency_job_id":"d85765d2-825a-4521-a6eb-ef222ed7c85a","html_url":"https://github.com/108yen/changeset-release","commit_stats":null,"previous_names":["108yen/changeset-release"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/108yen/changeset-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/108yen%2Fchangeset-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/108yen%2Fchangeset-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/108yen%2Fchangeset-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/108yen%2Fchangeset-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/108yen","download_url":"https://codeload.github.com/108yen/changeset-release/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/108yen%2Fchangeset-release/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33712579,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["changesets","github-actions","release-automation"],"created_at":"2024-11-16T22:11:39.866Z","updated_at":"2026-05-30T22:31:58.110Z","avatar_url":"https://github.com/108yen.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 108yen/changeset-release\n\n[![codecov](https://codecov.io/gh/108yen/changeset-release/graph/badge.svg?token=F2CQYGDLHE)](https://codecov.io/gh/108yen/changeset-release)\n[![MIT LIcense](https://img.shields.io/github/license/108yen/changeset-release)](https://img.shields.io/github/license/108yen/changeset-release)\n\nThis action extracts the process of creating a release to github from [`Changesets Release Action`](https://github.com/changesets/action).\nThis allows for release whenever you want.\n\n## Usage\n\n### Inputs\n\n- format: Release tag format. Choose one of these. (Default: `prefix`.)\n  - full: `package@1.0.0`\n  - major: `v1`\n  - prefix `v1.0.0`\n  - simple `1.0.0`\n- target: Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists. (Default: the repository's default branch.)\n\n### Outputs\n\n- tag: Release tag. (Example: `v1.0.0`)\n\n### Example workflow\n\nThis is an example of a release workflow that works when a PR issued by [`Changesets Release Action`](https://github.com/changesets/action) is merged.\nThe [`Changesets Release Action`](https://github.com/changesets/action) must be configured to work in a separate workflow.\n\n```yml\nname: Release\n\non:\n  pull_request_target:\n    types:\n      - closed\n    branches:\n      - main\n\nconcurrency: ${{ github.workflow }}-${{ github.ref }}\n\njobs:\n  release:\n    name: release\n\n    permissions:\n      contents: write\n\n    if: github.event.pull_request.merged == true \u0026\u0026 startsWith(github.head_ref, 'changeset-release/main')\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n\n      - name: Release\n        uses: 108yen/changeset-release@v1\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n```\n\n### Example of using output\n\n```yml\nname: Release\n\non:\n  pull_request_target:\n    types:\n      - closed\n    branches:\n      - main\n\nconcurrency: ${{ github.workflow }}-${{ github.ref }}\n\njobs:\n  release:\n    name: release\n\n    permissions:\n      contents: write\n\n    if: github.event.pull_request.merged == true \u0026\u0026 startsWith(github.head_ref, 'changeset-release/main')\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n\n      - name: Release\n        id: release\n        uses: 108yen/changeset-release@v1\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n\n      - name: Display Tag\n        run: echo '${{ steps.release.outputs.tag }}'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F108yen%2Fchangeset-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F108yen%2Fchangeset-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F108yen%2Fchangeset-release/lists"}