Skip to content

Commit 520614f

Browse files
author
Sophia Marie Terry
committed
fix: move changelog check to code-health
1 parent 9486687 commit 520614f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/code-health-tools.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@ jobs:
6868
exit 1
6969
fi
7070
exit 0
71+
- name: Check Changelog up-to-date
72+
run: |
73+
npm run gen-ipa-changelog
74+
if [[ -n $(git status --porcelain) ]]; then
75+
echo "Changelog not up to date, please run 'npm run gen-ipa-changelog' and commit the changes"
76+
exit 1
77+
fi
78+
exit 0
7179
- name: Download actionlint
7280
id: get_actionlint
7381
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)

.github/workflows/spectral-publish.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
- name: Check Changelog up-to-date
16-
run: |
17-
npm run gen-ipa-changelog
18-
if [[ -n $(git status --porcelain) ]]; then
19-
echo "Changelog not up to date, please run 'npm run gen-ipa-changelog' and commit the changes"
20-
exit 1
21-
fi
22-
exit 0
2315
- uses: actions/setup-node@v3
2416
with:
2517
node-version: "20"

0 commit comments

Comments
 (0)