Skip to content

Commit

Permalink
remove case sensitivity from semantic pr check
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Nov 10, 2024
1 parent 338f476 commit 60db695
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/semantic_pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Configure which types are allowed (newline-delimited).
# These are intentionally case-insensitive, allowing title casing or all lowercase.
# See: https://github.com/commitizen/conventional-commit-types/blob/master/index.json
types: |
fix
Expand All @@ -38,17 +39,3 @@ jobs:
Build
test
Test
# # We don't use scopes as of now
# scopes: |
# core
# ui
# JIRA-\d+

# Require capitalization for the first letter of the subject.
subjectPattern: ^[A-Z].*$
# 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 check the title against
the naming rules. You can also use the [WIP] prefix to bypass this check.

0 comments on commit 60db695

Please sign in to comment.