Skip to content

Commit d500db3

Browse files
committed
.github/workflows: Add commt_formatting.yml workflow.
Signed-off-by: zhanglinjing <[email protected]>
1 parent 2a3eaab commit d500db3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
+18
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)