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 9af4764 commit 84cf7e9Copy full SHA for 84cf7e9
.github/workflows/amplify.yml
@@ -0,0 +1,23 @@
1
+# .github/workflows/amplify.yml
2
+---
3
+name: Amplify Security
4
+on:
5
+ pull_request: {}
6
+ workflow_dispatch: {}
7
+ push:
8
+ branches: ["master", "main"]
9
+
10
+permissions:
11
+ contents: read
12
+ id-token: write
13
14
+jobs:
15
+ amplify-security-scan:
16
+ name: Amplify Security Scan
17
+ runs-on: ubuntu-latest
18
+ if: (!github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]')
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+ - name: Amplify Runner
23
+ uses: amplify-security/runner-action@main
0 commit comments