Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Kheifets <[email protected]>
  • Loading branch information
ikheifets-splunk committed Dec 5, 2024
1 parent 96be8a8 commit 89d86b8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci-ui-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.head_ref }}
outputs:
commit_message:
echo "${{ steps.get_commit_message.outputs.commit_message }}"
Expand All @@ -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.head_ref, 'refs/heads/chore/run-all-tests-suite-on-merge-develop')
timeout-minutes: 120
env:
CI_EXECUTION_TYPE: ci
Expand Down

0 comments on commit 89d86b8

Please sign in to comment.