Add commit message checker job #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Commit message standards checks | |
on: | |
pull_request: | |
jobs: | |
check_issue_references: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
submodules: recursive | |
# Don't do a shallow clone since we need to poke around in the Git history | |
fetch-depth: 0 | |
- name: Check that every commit name includes an issue reference like "#1" | |
run: | | |
IFS=$'\n' | |
for f in $(git log --oneline ${{github.base_ref}}..${{github.head_ref}}) | |
do | |
if [[ $f =~ ^.*#[0-9]+.*$ ]]; | |
then | |
continue | |
else | |
echo "Found commit with no issue number: $f" | |
exit 1 | |
fi | |
done |