Skip to content

Commit eec03af

Browse files
committed
WIP :: Changelog workflow
1 parent 2719968 commit eec03af

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/changelog.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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/[email protected]
14+
with:
15+
REPO_NAME: 'jeremykenedy/laravel-spa'
16+
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
17+
PATH: 'CHANGELOG.md'
18+
COMMIT_MESSAGE: 'docs(CHANGELOG): update release notes'
19+
TYPE: 'feat:Feature,fix:Bug Fixes,docs:Documentation,refactor:Refactor,perf:Performance Improvements'
20+
REGENERATE_COUNT: -1
21+
PULL_REQUEST: true
22+
BRANCH: 'dev'

0 commit comments

Comments
 (0)