We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1347ec5 commit bc8a925Copy full SHA for bc8a925
1 file changed
.github/workflows/codeql.yml
@@ -0,0 +1,30 @@
1
+name: CodeQL
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+ schedule:
9
+ - cron: '0 0 * * 1' # weekly
10
11
+jobs:
12
+ analyze:
13
+ name: Analyze
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
+ actions: read
17
+ contents: read
18
+ security-events: write
19
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v4
23
24
+ - name: Initialize CodeQL
25
+ uses: github/codeql-action/init@v3
26
+ with:
27
+ languages: php # explicitly set PHP here
28
29
+ - name: Perform CodeQL Analysis
30
+ uses: github/codeql-action/analyze@v3
0 commit comments