To ease the creation of the release notes, enforce some style on the git
commit message titles with `Commisery`.
https://github.com/marketplace/actions/commisery
Using https://github.com/clog-tool/clog-cli later on these commits will
generate a pretty nice base for the release notes.
--- /dev/null
+name: Commisery
+on:
+ pull_request:
+ types: [edited, opened, synchronize, reopened]
+
+jobs:
+ commit-message:
+ name: Conventional Commit Message Checker (Commisery)
+ runs-on: ubuntu-latest
+ steps:
+ - name: Check-out the repo under $GITHUB_WORKSPACE
+ uses: actions/checkout@v2
+
+ - name: Run Commisery
+ uses: KevinDeJong-TomTom/commisery-action@master
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ pull_request: ${{ github.event.number }}
+