mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-27 13:11:46 +03:00
Meta: Allow overlong 'fixup!' commit titles in pre-commit hook
This commit is contained in:
parent
5217202737
commit
7ba7668fbb
Notes:
sideshowbarker
2024-07-18 00:34:28 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/7ba7668fbb0 Pull-request: https://github.com/SerenityOS/serenity/pull/11119 Reviewed-by: https://github.com/bgianfo
1
.github/workflows/lintcommits.yml
vendored
1
.github/workflows/lintcommits.yml
vendored
@ -3,6 +3,7 @@ name: Commit linter
|
||||
on: [pull_request_target]
|
||||
|
||||
# Make sure to update Meta/lint-commit.sh to match this script when adding new checks!
|
||||
# (… but don't accept overlong 'fixup!' commit descriptions.)
|
||||
|
||||
jobs:
|
||||
lint_commits:
|
||||
|
@ -24,6 +24,8 @@ while read -r line; do
|
||||
|
||||
# ignore comment lines
|
||||
[[ "$line" =~ ^#.* ]] && continue
|
||||
# ignore overlong 'fixup!' commit descriptions
|
||||
[[ "$line" =~ ^fixup!\ .* ]] && continue
|
||||
|
||||
((line_number += 1))
|
||||
line_length=${#line}
|
||||
|
Loading…
Reference in New Issue
Block a user