Skip to content

Commit

Permalink
Gates CCIP CI to run only when CCIP files change (#14131)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalverra authored Aug 15, 2024
1 parent c3b1f90 commit c0c7649
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ccip-live-network-tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: CCIP Live Network Tests
on:
schedule:
- cron: '0 */6 * * *'
# TODO: TT-1470 - Turn back on as we solidify new realease and image strategy
# schedule:
# - cron: '0 */6 * * *'
workflow_dispatch:
inputs:
base64_test_input : # base64 encoded toml for test input
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ccip-load-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: CCIP Load Test
on:
push:
paths:
- '**/*ccip*'
- '**/*ccip*/**'
branches:
- develop
tags:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ jobs:
- 'core/**/migrations/*.sql'
- 'core/**/config/**/*.toml'
- 'integration-tests/**/*.toml'
ccip-changes:
- '**/*ccip*'
- '**/*ccip*/**'
- name: Ignore Filter On Workflow Dispatch
if: ${{ github.event_name == 'workflow_dispatch' }}
id: ignore-filter
Expand Down Expand Up @@ -514,7 +517,7 @@ jobs:
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/show-test-summary@75a9005952a9e905649cfb5a6971fd9429436acd # v2.3.25

eth-smoke-tests-matrix-ccip:
if: ${{ !contains(join(github.event.pull_request.labels.*.name, ' '), 'skip-smoke-tests') }}
if: steps.changes.outputs.ccip-changes == 'true' && ${{ !contains(join(github.event.pull_request.labels.*.name, ' '), 'skip-smoke-tests') }}
environment: integration
permissions:
actions: read
Expand Down

0 comments on commit c0c7649

Please sign in to comment.