From 3cd458691fb811c07142ea2f2b3f5af82e1878e6 Mon Sep 17 00:00:00 2001 From: Jesse Seales Date: Wed, 1 Nov 2023 12:06:05 -0400 Subject: [PATCH 1/2] test pr resolve OSV scanner From 728aca080b8352bc82f3671ec105e9c2d5a4f8bd Mon Sep 17 00:00:00 2001 From: Jesse Seales Date: Wed, 1 Nov 2023 12:13:49 -0400 Subject: [PATCH 2/2] allow PRs from forks --- .github/workflows/third_party_scan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/third_party_scan.yml b/.github/workflows/third_party_scan.yml index 444320232d5b5..e70b52cd72b78 100644 --- a/.github/workflows/third_party_scan.yml +++ b/.github/workflows/third_party_scan.yml @@ -15,7 +15,7 @@ jobs: name: Vulnerability scanning runs-on: ubuntu-20.04 # run on flutter/engine push to main or PRs with 'vulnerability patch' label - if: ${{ github.repository == 'flutter/engine' && (github.event_name == 'push' || github.event.label.name == 'vulnerability scan') }} + if: ${{ (github.repository == 'flutter/engine' && github.event_name == 'push') || github.event.label.name == 'vulnerability scan' }} permissions: # Needed to upload the SARIF results to code-scanning dashboard. security-events: write