mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-27 14:04:56 +01:00
CI: Changelog fix syntax
This commit is contained in:
parent
753e9075d2
commit
d752c92d72
1 changed files with 27 additions and 32 deletions
59
.github/workflows/changelog.yml
vendored
59
.github/workflows/changelog.yml
vendored
|
@ -30,37 +30,32 @@ jobs:
|
||||||
rtic-monotonics:
|
rtic-monotonics:
|
||||||
- 'rtic-monotonics/**'
|
- 'rtic-monotonics/**'
|
||||||
|
|
||||||
# run only if some file in matching folder was changed
|
- name: Check that changelog updated (rtic)
|
||||||
- if: steps.changes.outputs.rtic == 'true'
|
if: steps.changes.outputs.rtic == 'true'
|
||||||
steps:
|
uses: dangoslen/changelog-enforcer@v3
|
||||||
|
with:
|
||||||
|
changeLogPath: ./rtic/CHANGELOG.md
|
||||||
|
skipLabels: 'needs-changelog, skip-changelog'
|
||||||
|
missingUpdateErrorMessage: 'Please add a changelog entry in the rtic/CHANGELOG.md file.'
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Check that changelog updated (rtic)
|
- name: Check that changelog updated (rtic-timer)
|
||||||
uses: dangoslen/changelog-enforcer@v3
|
if: steps.changes.outputs.rtic-timer == 'true'
|
||||||
with:
|
uses: dangoslen/changelog-enforcer@v3
|
||||||
changeLogPath: ./rtic/CHANGELOG.md
|
with:
|
||||||
skipLabels: 'needs-changelog, skip-changelog'
|
changeLogPath: ./rtic-timer/CHANGELOG.md
|
||||||
missingUpdateErrorMessage: 'Please add a changelog entry in the rtic/CHANGELOG.md file.'
|
skipLabels: 'needs-changelog, skip-changelog'
|
||||||
env:
|
missingUpdateErrorMessage: 'Please add a changelog entry in the rtic-timer/CHANGELOG.md file.'
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- if: steps.changes.outputs.rtic-timer == 'true'
|
- name: Check that changelog updated (rtic-monotonics)
|
||||||
steps:
|
if: steps.changes.outputs.rtic-monotonics == 'true'
|
||||||
- name: Check that changelog updated (rtic-timer)
|
uses: dangoslen/changelog-enforcer@v3
|
||||||
uses: dangoslen/changelog-enforcer@v3
|
with:
|
||||||
with:
|
changeLogPath: ./rtic-monotonics/CHANGELOG.md
|
||||||
changeLogPath: ./rtic-timer/CHANGELOG.md
|
skipLabels: 'needs-changelog, skip-changelog'
|
||||||
skipLabels: 'needs-changelog, skip-changelog'
|
missingUpdateErrorMessage: 'Please add a changelog entry in the rtic-monotonics/CHANGELOG.md file.'
|
||||||
missingUpdateErrorMessage: 'Please add a changelog entry in the rtic-timer/CHANGELOG.md file.'
|
env:
|
||||||
env:
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- if: steps.changes.outputs.rtic-monotonics == 'true'
|
|
||||||
steps:
|
|
||||||
- name: Check that changelog updated (rtic-monotonics)
|
|
||||||
uses: dangoslen/changelog-enforcer@v3
|
|
||||||
with:
|
|
||||||
changeLogPath: ./rtic-monotonics/CHANGELOG.md
|
|
||||||
skipLabels: 'needs-changelog, skip-changelog'
|
|
||||||
missingUpdateErrorMessage: 'Please add a changelog entry in the rtic-monotonics/CHANGELOG.md file.'
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
Loading…
Reference in a new issue