-
Notifications
You must be signed in to change notification settings - Fork 383
50 lines (44 loc) · 1.38 KB
/
codeql-analysis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: CodeQL
# Cancel previous workflow run groups that have not completed.
concurrency:
# Group workflow runs by workflow name, along with the head branch ref of the pull request
# or otherwise the branch or tag ref.
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
# Disable permissions for all available scopes.
# Enable permissions for specific scopes as needed on job level.
permissions: {}
on:
push:
# Only run if JS or Python files changed.
paths:
- '**.js'
- '**.py'
branches:
- develop
# Include all release branches.
- '[0-9]+.[0-9]+'
pull_request:
# Only run if JS or Python files changed.
paths:
- '**.js'
- '**.py'
branches:
- develop
# Include all release branches.
- '[0-9]+.[0-9]+'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
- name: Initialize CodeQL
uses: github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd #v3.27.0
with:
languages: javascript, python
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd #v3.27.0