We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e003e84 commit ee72220Copy full SHA for ee72220
.github/workflows/haskell.yml
@@ -645,3 +645,24 @@ jobs:
645
echo 'The diff must not contain any `undefined` values'
646
false
647
fi
648
+
649
+ changelog-lint:
650
+ runs-on: ubuntu-latest
651
652
+ steps:
653
+ - uses: actions/checkout@v4
654
655
+ - name: Install changelog linter
656
+ run: |
657
+ VERSION=0.1.0.0
658
+ BINDIR=$HOME/.local/bin
659
+ mkdir -p "$BINDIR"
660
+ curl -sSfL "https://github.com/neilmayhew/changelogs/releases/download/$VERSION/changelogs-Linux-x86_64.zip" -o changelogs.zip
661
+ unzip changelogs.zip -d "$BINDIR"
662
+ rm changelogs.zip
663
+ echo "$BINDIR" >> $GITHUB_PATH
664
665
+ - name: Run linter
666
667
+ git ls-files '*CHANGELOG.md' | xargs -r changelogs --inplace
668
+ git diff --exit-code
0 commit comments