Skip to content

Commit ae1418c

Browse files
authored
feat: init Changelog.yml 🎉
1 parent 59f0e01 commit ae1418c

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflow/Changelog.yml

+29
Original file line numberDiff line numberDiff line change
@@ -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+
with:
27+
tag_name: ${{ steps.changelog.outputs.tag }}
28+
release_name: ${{ steps.changelog.outputs.tag }}
29+
body: ${{ steps.changelog.outputs.clean_changelog }}

0 commit comments

Comments
 (0)