File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 3939 ref : ${{ inputs.commit-sha }}
4040 - name : Filter fuzzer related files
4141 uses : dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
42+ if : github.event_name == 'pull_request'
4243 id : filter
4344 with :
4445 ref : ${{ inputs.commit-sha }}
@@ -51,16 +52,16 @@ jobs:
5152 - "**/*.bzl"
5253 - "**/*.rs"
5354 - uses : ./.github/actions/netrc
54- if : steps.filter.outputs.fuzzers == 'true'
55+ if : github.event_name != 'pull_request' || steps.filter.outputs.fuzzers == 'true'
5556 - name : Run Libfuzzer targets
5657 uses : ./.github/actions/bazel
57- if : steps.filter.outputs.fuzzers == 'true'
58+ if : github.event_name != 'pull_request' || steps.filter.outputs.fuzzers == 'true'
5859 with :
5960 invocation-names : libfuzzer
6061 run : ./bin/fuzzing/run-all-fuzzers.sh --libfuzzer 100
6162 - name : Run AFL targets
6263 uses : ./.github/actions/bazel
63- if : steps.filter.outputs.fuzzers == 'true'
64+ if : github.event_name != 'pull_request' || steps.filter.outputs.fuzzers == 'true'
6465 with :
6566 invocation-names : afl
6667 run : ./bin/fuzzing/run-all-fuzzers.sh --afl 10
You can’t perform that action at this time.
0 commit comments