Skip to content

Commit

Permalink
execute workflow also on dispatch if go-ethereum version did not change
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Mar 7, 2024
1 parent a15337a commit d2cf886
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/evm-version-compatibility-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
check-dependency-bump:
runs-on: ubuntu-latest
outputs:
sha: ${{ steps.changes.outputs.dependency_bumped }}
dependency_bumped: ${{ steps.changes.outputs.dependency_bumped }}
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -46,7 +46,7 @@ jobs:
# Build Test Dependencies

build-chainlink:
if: needs.check-dependency-bump.outputs.dependency_bumped == 'true'
if: needs.check-dependency-bump.outputs.dependency_bumped == 'true' || github.event_name == 'workflow_dispatch'
needs: [check-dependency-bump]
environment: integration
permissions:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }}

build-tests:
if: needs.check-dependency-bump.outputs.dependency_bumped == 'true'
if: needs.check-dependency-bump.outputs.dependency_bumped == 'true' || github.event_name == 'workflow_dispatch'
needs: [check-dependency-bump]
environment: integration
permissions:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
binary_name: tests

build-test-matrix:
if: needs.check-dependency-bump.outputs.dependency_bumped == 'true'
if: needs.check-dependency-bump.outputs.dependency_bumped == 'true' || github.event_name == 'workflow_dispatch'
needs: [check-dependency-bump]
runs-on: ubuntu-latest
name: Build Test Matrix
Expand Down

0 comments on commit d2cf886

Please sign in to comment.