We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce526c5 commit 33caafeCopy full SHA for 33caafe
.github/workflows/pr-security-scanning.yml
@@ -0,0 +1,26 @@
1
+name: "[pr] Report: Scan for Security Vulnerabilities"
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, reopened, synchronize]
6
7
+jobs:
8
+ run-security-scan:
9
+ runs-on:
10
+ - ephemeral
11
+ - ubuntu-latest
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Run composite security scanning
17
+ id: security-scanning
18
+ uses: customerio/cio-actions/security-scanning@main
19
+ with:
20
+ github_token: ${{ secrets.GITHUB_TOKEN }}
21
22
+ - name: Comment on pull request
23
+ uses: peter-evans/create-or-update-comment@v4
24
25
+ issue-number: ${{ github.event.pull_request.number }}
26
+ body-path: ${{ steps.security-scanning.outputs.semgrep_report_path }}
0 commit comments