Skip to content

Commit

Permalink
Build: fix regex allowing multiple fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlsherrill committed Jan 3, 2024
1 parent 218ca1f commit 0b0bf71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: deepakputhraya/action-pr-title@master
with:
regex: '(Fixes |Refs )\d+(,\d+)*: .+' # Regex the title should match.
regex: '^(Fixes |Refs )\d+(,\d+)*: .+' # Regex the title should match.
allowed_prefixes: 'Refs ,Fixes ' # title should start with the given prefix
disallowed_prefixes: '' # title should not start with the given prefix
prefix_case_sensitive: false # title prefix are case insensitive
Expand Down

0 comments on commit 0b0bf71

Please sign in to comment.