Skip to content

Commit 44aab6c

Browse files
ci: add job to parse changelog for validity
1 parent 3d6cdda commit 44aab6c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/run_ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,19 @@ env:
1616
SECRET_DETECTION_JSON_REPORT_FILE: "gitleaks.json"
1717

1818
jobs:
19+
parse-changelog:
20+
name: Parse changelog to verify it is valid
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
- uses: actions/setup-node@v2
25+
- name: Install keep-a-changelog
26+
run: |
27+
npm install -g keep-a-changelog
28+
29+
- name: Parse changelog
30+
run: changelog
31+
1932
black:
2033
runs-on: ubuntu-latest
2134
steps:

0 commit comments

Comments
 (0)