Skip to content

Commit

Permalink
Increase default length limit
Browse files Browse the repository at this point in the history
  • Loading branch information
lzap committed Sep 18, 2024
1 parent a3ca969 commit 701eca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rhenvision_changelog/commit_check.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

def check_commit(commit, jira_project, length_limit=70) -> int:
def check_commit(commit, jira_project, length_limit=120) -> int:
if len(commit.subject) > length_limit:
sys.stderr.write("ERROR: Commit subject is too long (limit is " + str(length_limit) + "): " + commit.subject + "\n")
return 1
Expand Down

0 comments on commit 701eca9

Please sign in to comment.