mirror of https://github.com/sgoudham/git-view.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
519 B
YAML
19 lines
519 B
YAML
name: Generate CHANGELOG
|
|
on:
|
|
release:
|
|
types: [released]
|
|
|
|
jobs:
|
|
generate-changelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: BobAnkh/auto-generate-changelog@master
|
|
with:
|
|
ACCESS_TOKEN: ${{secrets.CHANGELOG}}
|
|
PATH: 'CHANGELOG.md'
|
|
COMMIT_MESSAGE: 'docs(CHANGELOG): Update release notes'
|
|
TYPE: 'feat:Feature,fix:Bug Fixes,docs:Documentation,refactor:Refactor,perf:Performance Improvements,tests:Tests'
|