Skip to content

Commit

Permalink
Merge pull request #844 from mlcommons/pr-title-check-fix
Browse files Browse the repository at this point in the history
PR title regex fix
  • Loading branch information
sarthakpati authored Apr 4, 2024
2 parents 2a5707b + c1742bb commit 36c1da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check_pull_request_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
# - "Do something."
# - "Does something"
# - "Do"
regex: '^[A-Z][a-zA-Z]*(?<!s)( [a-zA-Z]+)+[^.]$' # use regex101.com for explanation
regex: '^[A-Z][a-zA-Z]*( [a-zA-Z]+)+[^.]$' # use regex101.com for explanation
min_length: 10
max_length: 72

0 comments on commit 36c1da1

Please sign in to comment.