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 6b17c78 commit eb438eaCopy full SHA for eb438ea
.github/workflows/commit_formatting.yml
@@ -0,0 +1,18 @@
1
+name: Commit message check
2
+
3
+on: [push, pull_request]
4
5
+concurrency:
6
+ group: ${{ github.workflow }}-${{ github.ref }}
7
+ cancel-in-progress: true
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: '100'
16
+ - uses: actions/setup-python@v5
17
+ - name: Check commit message formatting
18
+ run: source tools/ci.sh && ci_commit_formatting_run
0 commit comments