Skip to content

Commit

Permalink
Merge pull request #6022 from liquibase/updated_trigger
Browse files Browse the repository at this point in the history
Changed condition to trigger tests
  • Loading branch information
rberezen committed Jun 18, 2024
2 parents 281a0c9 + bc90785 commit bad6949
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
functional-tests-build:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'runFunctional&HarnessTests') || (github.event.pull_request.merged == true)
if: contains(github.event.pull_request.labels.*.name, 'runFunctional&HarnessTests') || (github.event_name != 'pull_request' && github.event_name != 'pull_request_target')
steps:

- name: Check variables
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-test-harness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
test-harness-build:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'runFunctional&HarnessTests') || (github.event.pull_request.merged == true)
if: contains(github.event.pull_request.labels.*.name, 'runFunctional&HarnessTests') || (github.event_name != 'pull_request' && github.event_name != 'pull_request_target')
steps:

- name: Check variables
Expand Down

0 comments on commit bad6949

Please sign in to comment.