Skip to content

Commit

Permalink
Increase default length limit in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
lzap committed Nov 18, 2024
1 parent 8a5274f commit e673d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rhenvision_changelog/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ def write_changelog(args: Optional[List[str]] = None) -> int:


def run_check_commit(args: Optional[List[str]] = None) -> int:
length_limit = 70
length_limit = 135
changelog = ProvisioningChangelog('.', JIRA_URL, JIRA_PROJECT, limit=1)
return check_commit(changelog.commits[0], JIRA_PROJECT, length_limit=length_limit)

0 comments on commit e673d77

Please sign in to comment.