You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Can't use the paths-ignore with 'push' as this would cause missing analyses.
7
+
pull_request:
8
+
# The branches below must be a subset of the branches above
9
+
branches: [ "dev" ]
10
+
paths-ignore:
11
+
- '**/*.md'
12
+
- '**/*.txt'
13
+
- '**/*.sh'
14
+
schedule:
15
+
- cron: '33 13 * * 2'
16
+
17
+
jobs:
18
+
analyze:
19
+
name: Analyze (${{ matrix.language }})
20
+
runs-on: ubuntu-latest
21
+
if: '!github.event.repository.fork'
22
+
23
+
permissions:
24
+
# required for all workflows
25
+
security-events: write
26
+
# required to fetch internal or private CodeQL packs
27
+
packages: read
28
+
# only required for workflows in private repositories
29
+
actions: read
30
+
contents: read
31
+
32
+
strategy:
33
+
fail-fast: false
34
+
matrix:
35
+
language: [ actions, python ]
36
+
steps:
37
+
- name: Checkout repository
38
+
uses: actions/checkout@v6
39
+
40
+
# Initializes the CodeQL tools for scanning.
41
+
- name: Initialize CodeQL
42
+
uses: github/codeql-action/init@v4
43
+
with:
44
+
languages: ${{ matrix.language }}
45
+
46
+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
0 commit comments