We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f0e01 commit ae1418cCopy full SHA for ae1418c
.github/workflow/Changelog.yml
@@ -0,0 +1,29 @@
1
+name: Changelog
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+
7
+jobs:
8
+ changelog:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v2
13
14
+ - name: Conventional Changelog Action
15
+ id: changelog
16
+ uses: TriPSs/conventional-changelog-action@v3
17
+ with:
18
+ github-token: ${{ secrets.GITHUB_TOKEN }}
19
+ output-file: "false"
20
21
+ - name: Create Release
22
+ uses: actions/create-release@v1
23
+ if: ${{ steps.changelog.outputs.skipped == 'false' }}
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
27
+ tag_name: ${{ steps.changelog.outputs.tag }}
28
+ release_name: ${{ steps.changelog.outputs.tag }}
29
+ body: ${{ steps.changelog.outputs.clean_changelog }}
0 commit comments