Skip to content

Commit

Permalink
Merge pull request #58 from Tim-Zhang/gh-increase-limit-of-commit-body
Browse files Browse the repository at this point in the history
gh: Increase the maximum word limit for commit message body
  • Loading branch information
Tim-Zhang authored Dec 25, 2024
2 parents b17010f + 1e26a76 commit 9281018
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commit-message-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ jobs:
uses: tim-actions/[email protected]
with:
commits: ${{ steps.get-pr-commits.outputs.commits }}
pattern: '^.+(\n.{0,72})*$|^.+\n\s*[^a-zA-Z\s\n]|^.+\n\S+$|\nSigned-off-by: dependabot\[bot\]'
error: 'Body line too long (max 72)'
pattern: '^.+(\n.{0,150})*$|^.+\n\s*[^a-zA-Z\s\n]|^.+\n\S+$|\nSigned-off-by: dependabot\[bot\]'
error: 'Body line too long (max 150)'
post_error: ${{ env.error_msg }}

0 comments on commit 9281018

Please sign in to comment.