Skip to content

Commit

Permalink
This is an error.
Browse files Browse the repository at this point in the history
followed by another
and then followed by yet another error because this line is far too long for reading
  • Loading branch information
jasonleenaylor committed Mar 28, 2024
1 parent 8095b5e commit e302c22
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/CommitMessage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 }}
```

0 comments on commit e302c22

Please sign in to comment.