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