Skip to content

Commit

Permalink
chore: ensures that PR subjects start with lowercase (#427)
Browse files Browse the repository at this point in the history
Fixes #425
  • Loading branch information
philipp-hinteregger committed Nov 16, 2022
1 parent 3afcaad commit 246f0b6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/validate-semantic-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defaults:
shell: bash
jobs:
validate:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Validate Pull Request
uses: amannn/action-semantic-pull-request@v5.0.2
Expand Down Expand Up @@ -44,3 +44,13 @@ jobs:
# merge commit, and it's easy to commit this by mistake. Enable this option
# to also validate the commit message for one commit PRs.
validateSingleCommit: true
# Configure additional validation for the subject based on a regex.
# This ensures the subject doesn't start with an uppercase character.
subjectPattern: ^(?![A-Z]).+$
# If `subjectPattern` is configured, you can use this property to override
# the default error message that is shown when the pattern doesn't match.
# The variables `subject` and `title` can be used within the message.
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character.

0 comments on commit 246f0b6

Please sign in to comment.