Skip to content

Commit

Permalink
switch to github.sha so workflow works on pushes
Browse files Browse the repository at this point in the history
The usage of github.event.pull_request.head.sha
only works on pushes in the PR context, however we
still want to run the integration test on merges
to ccip-develop. This change switches to using
github.sha which is available in all contexts.
  • Loading branch information
makramkd committed Aug 14, 2024
1 parent a12828c commit 803d9b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ccip-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Update chainlink-ccip dependency in ccip
run: |
cd ccip
go get github.com/smartcontractkit/chainlink-ccip@${{ github.event.pull_request.head.sha }}
go get github.com/smartcontractkit/chainlink-ccip@${{ github.sha }}
make gomodtidy
- name: Setup Postgres
uses: ./.github/actions/setup-postgres
Expand Down

0 comments on commit 803d9b8

Please sign in to comment.