We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a5b84c commit 0aaee4cCopy full SHA for 0aaee4c
1 file changed
.github/workflows/changelog.yml
@@ -1,11 +1,21 @@
1
-name: Conventional Changelog Action
2
-uses: TriPSs/conventional-changelog-action@v1.3.0
3
-on: [push]
+name: CI
+
+on: [push, pull_request]
4
branches: [master]
5
-with:
6
- github-token: ${{ secrets.github_token }}
7
- git-message: 'chore(release): {version}'
8
- preset: 'angular'
9
- tag-prefix: 'v'
10
- output-file: 'CHANGELOG.md'
11
- changelog-release-count: 5
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ node-version: [12.x]
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Use Node.js ${{ matrix.node-version }}
16
+ uses: actions/setup-node@v1
17
+ with:
18
+ node-version: ${{ matrix.node-version }}
19
+ - run: npx conventional-changelog -p scully -i CHANGELOG.md -s && git add CHANGELOG.md
20
+ env:
21
+ CI: true
0 commit comments