ci: disable integration test on pr (#2561)

* ci: disable integration test on pr

* chore: add show carryforward

* ci: add dummy action
This commit is contained in:
Jonathan Ho
2022-10-27 10:16:30 -05:00
committed by GitHub
parent 0fdf5d2528
commit 716499e865
3 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ jobs:
name: Integration Test
runs-on: ubuntu-latest
needs: path-filter
if: ${{ needs.path-filter.outputs.code-change == 'true' }}
if: ${{ needs.path-filter.outputs.code-change == 'true' && github.ref == 'refs/heads/main' }}
concurrency: integration-test
steps:
- uses: actions/checkout@v3
+12
View File
@@ -0,0 +1,12 @@
name: Validate Cache
on:
workflow_dispatch:
# This is just a dummy action for real one in benchies branch to run
jobs:
validate-cache:
name: Validate Cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2