We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1479e3e commit 58efc00Copy full SHA for 58efc00
1 file changed
.github/workflows/brin-security-scanner-test.yml
@@ -0,0 +1,20 @@
1
+# DO NOT MERGE: intentionally unsafe workflow used to test the Brin PR scanner.
2
+name: Brin Security Scanner Test
3
+
4
+on:
5
+ pull_request_target:
6
+ types: [opened, synchronize]
7
8
+permissions: write-all
9
10
+jobs:
11
+ unsafe-test-fixture:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout untrusted PR code
15
+ uses: actions/checkout@main
16
+ with:
17
+ ref: ${{ github.event.pull_request.head.sha }}
18
19
+ - name: Interpolate untrusted PR title
20
+ run: echo "PR title: ${{ github.event.pull_request.title }}"
0 commit comments