From 37c2f507a01af06627ff93eafa4fc80b2734620e Mon Sep 17 00:00:00 2001 From: stijn Date: Tue, 19 Jan 2021 15:06:50 +0100 Subject: github/workflows: Add workflow to verify commit message format. Using the new tools/verifygitlog.py script. --- .github/workflows/commit_formatting.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/commit_formatting.yml (limited to '.github/workflows/commit_formatting.yml') diff --git a/.github/workflows/commit_formatting.yml b/.github/workflows/commit_formatting.yml new file mode 100644 index 000000000..5f96fbb93 --- /dev/null +++ b/.github/workflows/commit_formatting.yml @@ -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 -- cgit v1.2.3