From 957d78b710a00c2ab05568e8719ed9eaa68917c5 Mon Sep 17 00:00:00 2001 From: Joseph Hickey Date: Wed, 13 Dec 2023 15:53:21 -0500 Subject: [PATCH] Fix #724, remove PR title check The PR title check is too rigid and doesn't provide much value --- .github/workflows/format-check.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/format-check.yml b/.github/workflows/format-check.yml index 23c38d011..3866ed8b9 100644 --- a/.github/workflows/format-check.yml +++ b/.github/workflows/format-check.yml @@ -69,15 +69,6 @@ jobs: runs-on: ubuntu-20.04 timeout-minutes: 15 steps: - # Check github pull-request title against the pattern. - - name: Check pull-request title - uses: gsactions/commit-message-checker@v2 - with: - pattern: '^((Fix|HotFix|Part)\s\#[0-9]+,\s[a-zA-Z0-9]+|Merge\spull\srequest\s\#[0-9]+\s[a-zA-Z0-9]+|IC:\s[a-zA-Z0-9]+)' - error: 'You need at least one "Fix|HotFix|Part #, " line in the pull-request title.' - excludeDescription: 'true' - excludeTitle: 'false' - checkAllCommitMessages: 'false' # Check each commit message associated with the pull-request against the pattern. - name: Check each commit message uses: gsactions/commit-message-checker@v2