-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
followed by another and then followed by yet another error because this line is far too long for reading
- Loading branch information
1 parent
8095b5e
commit c698285
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
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" | ||
echo cat cmlint.log >> "$GITHUB_ENV" | ||
echo "###LINT_DELIMITER###" >> "$GITHUB_ENV" | ||
cat cmlint.log >> $GITHUB_STEP_SUMMARY | ||
- name: Comment on PR | ||
if: failure() | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
with: | ||
header: Commit Comment | ||
message: | | ||
``` | ||
${{ env.lint_result }} | ||
``` |