From 60db6954010fa85b2f9e8d97f56598701299fcb6 Mon Sep 17 00:00:00 2001 From: Aaron Steers Date: Sat, 9 Nov 2024 21:17:11 -0800 Subject: [PATCH] remove case sensitivity from semantic pr check --- .github/workflows/semantic_pr_check.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/semantic_pr_check.yml b/.github/workflows/semantic_pr_check.yml index 3c0947d8b..ef9f4a3b0 100644 --- a/.github/workflows/semantic_pr_check.yml +++ b/.github/workflows/semantic_pr_check.yml @@ -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 @@ -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.