forked from getporter/porter
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 950 Bytes
/
changelog.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Generate Changelog for Porter
on:
release:
types: [published]
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.3.0
with:
ref: main
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install conventional-changelog-cli
run: npm install -g conventional-changelog-cli
- name: Generate changelog
run: conventional-changelog -p angular -i CHANGELOG.md -s -r 0
- name: Commit and push changes
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'actions@github.com'
git add CHANGELOG.md
git commit -m "Updated Changelog after Latest Release" || echo "No changes to commit"
git push origin main