917 B
yaml
| 1 | schema: 1 |
| 2 | name: changelog-generator |
| 3 | owner: openagents |
| 4 | version: 1.1.0 |
| 5 | kind: workflow |
| 6 | title: Changelog Generator |
| 7 | summary: Turns a git log range into a grouped CHANGELOG entry with breaking changes called out and links to issues/PRs |
| 8 | license: MIT |
| 9 | tags: [changelog, git, release, documentation, automation] |
| 10 | runtimes: [claude-code, codex, generic] |
| 11 | pricing: |
| 12 | model: free |
| 13 | amount_cents: 0 |
| 14 | currency: usd |
| 15 | entry: WORKFLOW.md |
| 16 | files: |
| 17 | - WORKFLOW.md |
| 18 | inputs: |
| 19 | - name: from_ref |
| 20 | type: string |
| 21 | required: true |
| 22 | description: Starting git ref (exclusive), e.g. the previous release tag "v1.2.0" |
| 23 | - name: to_ref |
| 24 | type: string |
| 25 | required: false |
| 26 | default: HEAD |
| 27 | description: Ending git ref (inclusive) |
| 28 | - name: version |
| 29 | type: string |
| 30 | required: false |
| 31 | description: Version label for the new changelog section, e.g. "1.3.0"; if omitted, left as "Unreleased" |
| 32 | requires: |
| 33 | - openagents/commit-conventions@^1 |
| 34 |