We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e28ad1d commit 558bea8Copy full SHA for 558bea8
ql/test/query-tests/Security/CWE-367/.github/workflows/label_actor.yml
@@ -0,0 +1,17 @@
1
+# Making Label gates the only ones bypassable with TOCTOU races since actor or association ones should not be bypassable
2
+name: Label Trigger Test
3
+on:
4
+ pull_request_target:
5
+ types: [labeled]
6
+ branches: [main]
7
+
8
+jobs:
9
+ integration-tests:
10
+ runs-on: ubuntu-latest
11
+ if: github.repository_owner == 'npm' && github.actor == 'dependabot[bot]'
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ ref: ${{ github.event.pull_request.head.ref }}
16
+ repository: ${{ github.event.pull_request.head.repo.full_name }}
17
+ - run: bash label_example/tests.sh
0 commit comments