Skip to content

Commit

Permalink
Build: enforce full jira ticket (#912)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlsherrill authored Dec 18, 2024
1 parent ea9344c commit 79e0a48
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ jobs:
steps:
- uses: deepakputhraya/action-pr-title@master
with:
regex: '^Build|^((Fixes |Refs )\d+(,\d+)*): .+' # Regex the title should match.
allowed_prefixes: 'Refs ,Fixes ,Build ' # title should start with the given prefix
regex: '^Build|^(\w+-\d+(,\w+-\d+)*): .+' # Regex the title should match.
disallowed_prefixes: '' # title should not start with the given prefix
prefix_case_sensitive: false # title prefix are case insensitive
min_length: 5 # Min length of the title
max_length: 60 # Max length of the title
max_length: 70 # Max length of the title
github_token: ${{ github.token }} # Default: ${{ github.token }}

0 comments on commit 79e0a48

Please sign in to comment.