Skip to content

Commit

Permalink
PR title: regex fix
Browse files Browse the repository at this point in the history
old version prohibited first word to finish with `s` char, that is quite a weird
  • Loading branch information
VukW authored Apr 4, 2024
1 parent 2a5707b commit c1742bb
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 c1742bb

Please sign in to comment.