github/workflows: Add workflow to verify commit message format.

Using the new tools/verifygitlog.py script.
This commit is contained in:
stijn
2021-01-19 15:06:50 +01:00
committed by Damien George
parent d48860c7dd
commit 37c2f507a0
2 changed files with 24 additions and 0 deletions

14
.github/workflows/commit_formatting.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
name: Check commit message formatting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '100'
- uses: actions/setup-python@v1
- name: Check commit message formatting
run: source tools/ci.sh && ci_commit_formatting_run