From 850c7a933fc169b5ee06fe6cbb0f609252a2506d Mon Sep 17 00:00:00 2001 From: Sergey Petushkov Date: Wed, 6 Nov 2024 15:12:33 +0100 Subject: [PATCH] chore(ci): allow for more numbers in tickets --- .github/workflows/check-pr-title.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-pr-title.yml b/.github/workflows/check-pr-title.yml index 3d7b5a61987..28a8d5e72e6 100644 --- a/.github/workflows/check-pr-title.yml +++ b/.github/workflows/check-pr-title.yml @@ -19,6 +19,6 @@ jobs: # Skip the JIRA ticket check for PRs opened by bots if: ${{ !contains(github.event.pull_request.user.login, '[bot]') }} with: - regex: '[A-Z]{4,10}-[0-9]{1,5}$' + regex: '[A-Z]{4,10}-[0-9]{1,10}$' error-hint: 'Invalid PR title. Make sure it ends with a JIRA ticket - i.e. COMPASS-1234 or add the no-title-validation label' ignore-labels: 'no-title-validation'