{"id":27351885,"url":"https://github.com/matthew-kilpatrick/shortcut-release-action","last_synced_at":"2026-04-30T10:04:33.367Z","repository":{"id":287455620,"uuid":"964796061","full_name":"Matthew-Kilpatrick/shortcut-release-action","owner":"Matthew-Kilpatrick","description":"A GitHub Action to generates release notes and increments semver based on Shortcut story IDs referenced in commits.","archived":false,"fork":false,"pushed_at":"2025-04-12T14:20:26.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T20:54:00.085Z","etag":null,"topics":["actions"],"latest_commit_sha":null,"homepage":"","language":"Python","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/Matthew-Kilpatrick.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-04-11T19:55:40.000Z","updated_at":"2025-04-12T14:20:17.000Z","dependencies_parsed_at":"2025-04-11T20:52:46.337Z","dependency_job_id":null,"html_url":"https://github.com/Matthew-Kilpatrick/shortcut-release-action","commit_stats":null,"previous_names":["matthew-kilpatrick/shortcut-release-action"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matthew-Kilpatrick%2Fshortcut-release-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matthew-Kilpatrick%2Fshortcut-release-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matthew-Kilpatrick%2Fshortcut-release-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matthew-Kilpatrick%2Fshortcut-release-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Matthew-Kilpatrick","download_url":"https://codeload.github.com/Matthew-Kilpatrick/shortcut-release-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248631719,"owners_count":21136560,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["actions"],"created_at":"2025-04-12T20:54:03.332Z","updated_at":"2026-04-30T10:04:33.260Z","avatar_url":"https://github.com/Matthew-Kilpatrick.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Shortcut Release GitHub Action\n\nA GitHub Action that automatically creates release notes and increments the [semver](https://semver.org/) based on [Shortcut](https://shortcut.com) stories referenced in commit messages.\n\nThis project was mostly generated by [Cursor](https://cursor.com), as a sample project while I've been exploring AI development tooling.\n\n## Features\n\n- Automatically detects Shortcut story IDs in commit messages (e.g., `SC-123`)\n- Determines release type (major, minor, patch) based on story types\n- Generates release notes from story titles\n- Creates GitHub releases with appropriate versioning\n- Supports custom release titles and body prefixes\n- Configurable draft and prerelease flags\n- Supports artifact uploads\n\n## Usage\n\n### Basic Usage\n\n```yaml\nname: Create Release\non:\n  push:\n    branches:\n      - main\n\njobs:\n  release:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Create Release\n        uses: matthew/kilpatrick/shortcut-release-action@v1\n        with:\n          shortcut-token: ${{ secrets.SHORTCUT_TOKEN }}\n```\n\n### Advanced Usage\n\n```yaml\nname: Create Release\non:\n  push:\n    branches:\n      - main\n\njobs:\n  release:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Create Release\n        uses: matthew-kilpatrick/shortcut-release-action@v1\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n          shortcut-token: ${{ secrets.SHORTCUT_TOKEN }}\n          title: 'Major Feature Release'\n          body-prefix: |\n            # Release Highlights\n            This release includes several important updates:\n          artifacts: 'dist.zip,release-notes.pdf'\n          draft: true\n          prerelease: false\n        id: release\n      \n      - name: Use Release Outputs\n        run: |\n          echo \"New version: ${{ steps.release.outputs.version }}\"\n          echo \"Release notes: ${{ steps.release.outputs.release-notes }}\"\n```\n\n## Inputs\n\n| Input | Type | Description | Required | Default |\n|-------|------|-------------|----------|---------|\n| `github-token` | `string` | GitHub token for authentication | No | `${{ github.token }}` |\n| `shortcut-token` | `string` | Shortcut API token | Yes | - |\n| `title` | `string` | Custom release title. If empty, uses the version | No | - |\n| `body-prefix` | `string` | Text to prepend to the generated release notes | No | - |\n| `artifacts` | `string` | Comma-separated list of artifacts to upload | No | - |\n| `draft` | `boolean` | Whether to create the release as a draft | No | `false` |\n| `prerelease` | `boolean` | Whether to mark the release as a prerelease | No | `false` |\n| `create-release` | `boolean` | Whether to automatically create the GitHub release. If false, only generates version and release notes | No | `true` |\n\n## Outputs\n\n| Output | Type | Description |\n|--------|------|-------------|\n| `version` | `string` | The version of the new release (e.g., \"v1.2.3\") |\n| `release-notes` | `string` | The generated release notes from Shortcut stories |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthew-kilpatrick%2Fshortcut-release-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatthew-kilpatrick%2Fshortcut-release-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthew-kilpatrick%2Fshortcut-release-action/lists"}