Skip to content

Commit

Permalink
refactor(ci): add more valid PR title types
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos committed Apr 22, 2024
1 parent a094dac commit 9fa0b6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pull_request_title_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
chore
perf
refactor
release
# Configure that a scope must always be provided.
requireScope: false
# Configure which scopes are disallowed in PR titles (newline-delimited).
Expand All @@ -38,7 +39,7 @@ jobs:
# These are regex patterns auto-wrapped in `^ $`.
disallowScopes: |
release
[A-Z]+
[A-Z_-]+
# Configure additional validation for the subject based on a regex.
# This example ensures the subject doesn't start with an uppercase character.
subjectPattern: ^(?![A-Z]).+$
Expand Down

0 comments on commit 9fa0b6c

Please sign in to comment.