diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 700a99e3a..bcc764302 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/.github/workflows/validateCache.yml b/.github/workflows/validateCache.yml new file mode 100644 index 000000000..ab5f445a9 --- /dev/null +++ b/.github/workflows/validateCache.yml @@ -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 diff --git a/codecov.yml b/codecov.yml index dbe759be6..cf26ea4b1 100644 --- a/codecov.yml +++ b/codecov.yml @@ -7,3 +7,5 @@ flags: paths: - ".*" carryforward: true +comment: + show_carryforward_flags: true