-
-
Notifications
You must be signed in to change notification settings - Fork 32
35 lines (34 loc) · 1002 Bytes
/
CommitMessage.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Commit messages check
on:
pull_request:
jobs:
gitlint:
name: Check commit messages
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
pip install --upgrade gitlint
- name: Lint git commit messages
run: |
gitlint --commits origin/$GITHUB_BASE_REF.. >> cmlint.log 2>&1
echo "lint_result=<<###LINT_DELIMITER###" >> "$GITHUB_ENV"
lint_output=$(cat cmlint.log)
echo "$lint_output"
echo "THIS Just ain't working" >> "$GETHUB_ENV"
echo "$lint_output" >> "$GITHUB_ENV"
echo "###LINT_DELIMITER###" >> "$GITHUB_ENV"
echo "$lint_output" >> $GITHUB_STEP_SUMMARY
- name: Comment on PR
if: failure()
uses: marocchino/sticky-pull-request-comment@v2
with:
header: Commit Comment
message: |
```
${{ env.lint_result }}
```