Commit 8a8c7096 authored by Liam Horne's avatar Liam Horne Committed by GitHub

Merge pull request #1231 from ethereum-optimism/maurelian/fix-skip-codecov

chore(ci): Skip check files job on push events
parents 1af95766 e0dc5f56
......@@ -64,7 +64,10 @@ jobs:
# A hack that allows running a job only if a specific directory changed.
# Ref: https://github.community/t/run-job-only-if-folder-changed/118292
is-contracts-package:
name: Check files
name: Check files for changes to the contracts package
# This job will break on a push event, so we just skip it,
# which in turn skips the test-coverage job.
if: ${{ github.event_name != 'push' }}
outputs:
run_coverage: ${{ steps.check_files.outputs.run_coverage }}
runs-on: ubuntu-latest
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment