Skip to content

Commit

Permalink
chore: run all test suite when merging on develop (#1136)
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Kheifets <[email protected]>
  • Loading branch information
ikheifets-splunk authored Dec 13, 2024
1 parent 527bd84 commit 71c795a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
needs:
- integration-tests-check
runs-on: ubuntu-latest
if: "contains(needs.integration-tests-check.outputs.commit_message, '[run-int-tests]')"
if: "contains(needs.integration-tests-check.outputs.commit_message, '[run-int-tests]') || github.ref_name == 'develop'"
timeout-minutes: 120
steps:
- name: Checkout Project
Expand All @@ -159,7 +159,7 @@ jobs:
needs:
- integration-tests-check
runs-on: ubuntu-latest
if: "contains(needs.integration-tests-check.outputs.commit_message, '[run-int-tests]')"
if: "contains(needs.integration-tests-check.outputs.commit_message, '[run-int-tests]') || github.ref_name == 'develop'"
timeout-minutes: 120
steps:
- name: Checkout Project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-ui-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
needs:
- ui-tests-check
runs-on: ubuntu-latest
if: "contains(needs.ui-tests-check.outputs.commit_message, '[run-ui-tests]')"
if: "contains(needs.ui-tests-check.outputs.commit_message, '[run-ui-tests]') || github.ref_name == 'develop'"
timeout-minutes: 120
env:
CI_EXECUTION_TYPE: ci
Expand Down

0 comments on commit 71c795a

Please sign in to comment.