mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
added changelog enforcer action
This commit is contained in:
parent
08d7af2b80
commit
326462fb58
1 changed files with 11 additions and 0 deletions
11
.github/workflows/enforce-changelog.yml
vendored
Normal file
11
.github/workflows/enforce-changelog.yml
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
on: pull_request
|
||||||
|
jobs:
|
||||||
|
enforce-changelog:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: dangoslen/changelog-enforcer@v3
|
||||||
|
with:
|
||||||
|
changeLogPath: CHANGELOG.md
|
||||||
|
missingUpdateErrorMessage: |
|
||||||
|
The changelog was not updated. Please document your changes in Changelog.md.
|
||||||
|
Run `git config core.hooksPath .githooks` to enable a git hook that ensures you updated the changelog before pushing.
|
Loading…
Reference in a new issue