From c10aa0499a28441aefbe882b6fcbd659d1b497ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nurzhan=20Sak=C3=A9n?= Date: Tue, 23 Apr 2024 15:08:12 +0400 Subject: [PATCH] [fix]: fix broken regex in PR title action (#4493) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nurzhan Sakén --- .github/workflows/iroha2-dev-pr-title.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/iroha2-dev-pr-title.yml b/.github/workflows/iroha2-dev-pr-title.yml index ef20366796d..db511656d98 100644 --- a/.github/workflows/iroha2-dev-pr-title.yml +++ b/.github/workflows/iroha2-dev-pr-title.yml @@ -46,7 +46,7 @@ jobs: if: steps.refactor-match.outputs.match == '' with: text: ${{ github.event.pull_request.title }} - regex: '\[fix\] #\d+(, #\d+)*: .+$' + regex: '^\[fix\] #\d+(, #\d+)*: .+$' - name: Add fix label uses: actions-ecosystem/action-add-labels@v1 if: steps.fix-match.outputs.match != ''