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 30263b2 commit f9451d1Copy full SHA for f9451d1
.github/workflows/haskell.yml
@@ -645,3 +645,26 @@ 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
+ cd "$(mktemp -d)"
658
+ cat <<EOF >cabal.project
659
+ source-repository-package
660
+ type: git
661
+ location: https://github.com/neilmayhew/changelogs.git
662
+ tag: 8a1029b8e67b534fe918477275026e1a38c5053c
663
+ EOF
664
+ cabal update
665
+ cabal install changelogs
666
667
+ - name: Run linter
668
669
+ git ls-files '*/CHANGELOG.md' | grep -ve -spec/ | xargs -r changelogs --inplace
670
+ git diff
0 commit comments