Skip to content

Commit dc19865

Browse files
committed
Sync auto-sec-scan.yml from .github repo
1 parent 430c483 commit dc19865

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "Security Scan on PR"
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened]
5+
jobs:
6+
security_scan:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@main
11+
- name: Run CodeQL Scan
12+
uses: github/codeql-action/init@main
13+
with:
14+
languages: 'python,javascript'
15+
- name: Perform CodeQL Analysis
16+
uses: github/codeql-action/analyze@main

0 commit comments

Comments
 (0)