https://github.com/scomans/generate-changelog-action
Action that generates a changelog based on the commits since the last release or a given tag
https://github.com/scomans/generate-changelog-action
Last synced: 3 months ago
JSON representation
Action that generates a changelog based on the commits since the last release or a given tag
- Host: GitHub
- URL: https://github.com/scomans/generate-changelog-action
- Owner: scomans
- License: mit
- Created: 2023-07-23T18:58:02.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-22T10:23:59.000Z (about 2 years ago)
- Last Synced: 2025-12-25T23:30:43.789Z (6 months ago)
- Language: TypeScript
- Size: 589 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Generate changelog based on commits
This action generates a changelog based on the commits since the last release or a given tag.
## Inputs
### `tagFrom`
The tag to start from. If not provided, the latest tag will be used.
### `tagTo`
The tag to end at. If not provided, the HEAD tag will be used.
### `github_token`
**Required if repo is private** Your GitHub access token (see Usage below).
## Outputs
### `changelog`
The changelog in markdown format
## Example usage
```yaml
- uses: scomans/generate-changelog-action@v1
id: changelog
with:
fromTag: v1.2.3
toTag: v1.2.5
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Echo changelog
run: echo "${{ steps.changelog.outputs.changelog }}"
```