{"id":24364414,"url":"https://github.com/koblers/release-drafter","last_synced_at":"2026-04-17T03:32:17.582Z","repository":{"id":268274599,"uuid":"843835231","full_name":"KoblerS/release-drafter","owner":"KoblerS","description":"GitHub Action that automates release drafting based on conventional commit messages","archived":false,"fork":false,"pushed_at":"2024-12-15T17:48:23.000Z","size":252,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-06T18:53:56.088Z","etag":null,"topics":["actions","automation","cicd","drafts","github-actions","release-drafter","releases"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KoblerS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-08-17T15:07:17.000Z","updated_at":"2025-05-20T07:17:49.000Z","dependencies_parsed_at":"2024-12-15T18:39:47.747Z","dependency_job_id":null,"html_url":"https://github.com/KoblerS/release-drafter","commit_stats":null,"previous_names":["koblers/release-drafter"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/KoblerS/release-drafter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoblerS%2Frelease-drafter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoblerS%2Frelease-drafter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoblerS%2Frelease-drafter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoblerS%2Frelease-drafter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KoblerS","download_url":"https://codeload.github.com/KoblerS/release-drafter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoblerS%2Frelease-drafter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31913594,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"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":["actions","automation","cicd","drafts","github-actions","release-drafter","releases"],"created_at":"2025-01-18T23:53:04.478Z","updated_at":"2026-04-17T03:32:17.561Z","avatar_url":"https://github.com/KoblerS.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📦🚀 GitHub Action release drafter\n\n[![Build and Test](https://github.com/KoblerS/release-drafter/actions/workflows/publish.yml/badge.svg)](https://github.com/KoblerS/release-drafter/actions/workflows/publish.yml)\n\nDraft GitHub releases and automate versioning based on\n[conventional commit messages](https://www.conventionalcommits.org).\n\nHere is a git graph, demonstrating how the release strategy would look like:\n\n```mermaid\ngitGraph\n    commit tag: \"v1.0.0\"\n    branch features/my-awesome-idea\n    commit\n    commit id: \"fix: fixed linting errors\"\n    checkout main\n    merge features/my-awesome-idea tag: \"v1.0.1\"\n    branch features/my-second-idea\n    commit id: \"feat:adding new calculator to calculate prices\"\n    checkout main\n    merge features/my-second-idea tag: \"v1.1.0\"\n    branch features/my-third-idea\n    commit\n    commit id: \"BREAKING CHANGE:removed database connection\"\n    checkout main\n    merge features/my-third-idea tag: \"v2.0.0\"\n```\n\n## Usage\n\n```yaml\n- uses: KoblerS/release-drafter@v1\n```\n\nThe available parameters are optional:\n\n- `token`: (default) the GitHub token that will be used for authentication\n- `generate-release-notes`: `true` (default) adds the existing commit messages\n  to the release notes, `false` leaves the release notes empty\n- `version-prefix`: `v` prepends a prefix to the version number\n\n\u003e [!IMPORTANT]  \n\u003e Important note: Make sure to set the correct permissions for your action:\n\n```yaml\npermissions:\n  # Required to request the OIDC JWT Token\n  id-token: write\n  # Required when GH token is used to authenticate with private repo\n  contents: write\n```\n\n## Output variables\n\nIn order to continue workflow code the following output parameters are set:\n\n- `release-id`: GitHub internal id of the created release\n- `version`: Version code of the created release\n- `raw-version`: Version code without `v` prefix\n\n## How does it work?\n\nThis action analyzes commit messages to assess the impact of changes on the codebase. By adhering to standardized commit message conventions, it automatically calculates the next [semantic version](https://semver.org/) number, generates a changelog, and drafts a release on GitHub.\n\nTools like [commitizen](https://github.com/commitizen/cz-cli) or [commitlint](https://github.com/conventional-changelog/commitlint) can assist contributors in creating valid commit messages.\n\nThe examples below illustrate which commit messages trigger specific release types when semantic-release is executed (using the default configuration):\n\n### Patch release\n\n- `fix(api): fixed API endpoint to get the communication working`\n- `docs: added infrastructure diagram`\n- `test: added unit tests for src/calculator.ts`\n\nFor a comprehensive list of keywords, refer to [src/version-helper.ts](src/version-helper.ts).\n\n### Minor release\n\n- `feat(calculation): implemented salary income calculator`\n\n### Major release\n\nEnsure the `BREAKING CHANGE:` token is at the beginning of the line.\n\n- `perf(pencil): remove graphiteWidth option`\n  - `BREAKING CHANGE: The graphiteWidth option has been removed.`\n  - `The default graphite width of 10mm is always used for performance reasons.`\n- `refactor!: refactored API endpoints to noun-based approach`\n- `major: enforcing OAuth authentication for all API endpoints`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoblers%2Frelease-drafter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoblers%2Frelease-drafter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoblers%2Frelease-drafter/lists"}