Skip to content

Commit cd2b4c7

Browse files
author
Enda Phelan
committed
ci: add action
1 parent 36b7264 commit cd2b4c7

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/changelog.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Generate a CHANGELOG
2+
on:
3+
push:
4+
branches:
5+
- dev
6+
jobs:
7+
package:
8+
runs-on: ubuntu-latest
9+
steps:
10+
-
11+
name: Install git-chglog
12+
uses: craicoverflow/install-git-chglog@v0.3.1
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 0
17+
-
18+
name: Generate a CHANGELOG
19+
run: |
20+
git-chglog -o CHANGELOG.md
21+
- uses: stefanzweifel/git-auto-commit-action@v4
22+
with:
23+
branch: dev

0 commit comments

Comments
 (0)