From 8aac4fcf2b434cf7ac10394302ec8d167e72e903 Mon Sep 17 00:00:00 2001 From: Ilya Kheifets Date: Thu, 5 Dec 2024 15:03:07 +0100 Subject: [PATCH] chore: test Signed-off-by: Ilya Kheifets --- .github/workflows/ci-ui-tests.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-ui-tests.yaml b/.github/workflows/ci-ui-tests.yaml index f1521c054..df4bbefe4 100644 --- a/.github/workflows/ci-ui-tests.yaml +++ b/.github/workflows/ci-ui-tests.yaml @@ -28,6 +28,9 @@ jobs: elif [[ '${{ github.event_name }}' == 'pull_request' ]]; then echo ::set-output name=commit_message::$(git log --format=%B -n 1 HEAD^2) fi + - name: debug + run: | + echo ${{ github.ref }} outputs: commit_message: echo "${{ steps.get_commit_message.outputs.commit_message }}" @@ -37,7 +40,7 @@ jobs: needs: - ui-tests-check runs-on: ubuntu-latest - if: "contains(needs.ui-tests-check.outputs.commit_message, '[run-ui-tests]') || github.ref_name == 'refs/heads/develop'" + if: contains(needs.ui-tests-check.outputs.commit_message, '[run-ui-tests]') || startsWith(github.ref_name, 'refs/heads/chore/run-all-tests-suite-on-merge-develop') timeout-minutes: 120 env: CI_EXECUTION_TYPE: ci