Skip to content

Commit dc7f331

Browse files
authored
Create changelog.yml
1 parent 7a574f2 commit dc7f331

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/changelog.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Generate changelog
2+
on:
3+
release:
4+
types: [created, edited]
5+
6+
jobs:
7+
generate-changelog:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: 0
13+
- uses: BobAnkh/auto-generate-changelog@master
14+
with:
15+
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
16+
PATH: '/CHANGELOG.md'
17+
COMMIT_MESSAGE: 'docs(CHANGELOG): update release notes'
18+
TYPE: 'feat:Feature,fix:Bug Fixes,docs:Documentation,refactor:Refactor,perf:Performance Improvements'

0 commit comments

Comments
 (0)