Skip to content

Commit 2501d66

Browse files
committedFeb 25, 2024
github: workflow: Add gitlint check
gitlint is a tool to check git commit messages. This commit adds the check to all pull requests. Signed-off-by: Yasushi SHOJI <[email protected]>
1 parent 5668821 commit 2501d66

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
 

‎.github/workflows/gitlint.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: GitLint
2+
3+
on:
4+
pull_request
5+
6+
jobs:
7+
gitlint:
8+
runs-on: ubuntu-latest
9+
name: Run gitlint against all commits in a PR
10+
steps:
11+
12+
- name: Install python dependencies
13+
run: |
14+
pip3 install gitlint
15+
16+
- name: Checkout the code
17+
uses: actions/checkout@v4
18+
with:
19+
ref: ${{ github.event.pull_request.head.sha }}
20+
fetch-depth: 0
21+
22+
- name: Setup Git (pull request)
23+
run: |
24+
git checkout -b this_pr
25+
26+
- name: Run gitlint
27+
if: ${{ github.base_ref }}
28+
env:
29+
BASE_REF: ${{ github.base_ref }}
30+
run: |
31+
gitlint --commits origin/${BASE_REF}..this_pr

0 commit comments

Comments
 (0)