From 8e98bd439bd3b35c85728422cbcf27cfb796f8eb Mon Sep 17 00:00:00 2001 From: Auguste Rame <19855629+SuperAuguste@users.noreply.github.com> Date: Sun, 22 Jan 2023 15:27:17 -0500 Subject: [PATCH] pull_request -> pull_request_target all over (#935) --- .github/workflows/fuzz.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index dea1026..be32b94 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -27,7 +27,7 @@ permissions: read-all jobs: fuzz: - if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'pr:fuzz') + if: github.event_name != 'pull_request_target' || contains(github.event.pull_request.labels.*.name, 'pr:fuzz') runs-on: ubuntu-latest steps: @@ -37,12 +37,12 @@ jobs: swap-size-gb: 10 - name: Default fuzzing duration - if: github.event_name != 'pull_request' + if: github.event_name != 'pull_request_target' run: | echo "FUZZING_DURATION=${{ github.event.inputs.fuzzing_duration }}" >> $GITHUB_ENV - name: PR fuzzing duration - if: github.event_name == 'pull_request' + if: github.event_name == 'pull_request_target' run: | echo "FUZZING_DURATION=15m" >> $GITHUB_ENV