Skip to content

Commit 7c9f4ec

Browse files
committed
Let CodeQL analyze the release branches as well
1 parent 984d5a0 commit 7c9f4ec

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches:
6+
- master
7+
- 'release/**'
68
pull_request:
79
# The branches below must be a subset of the branches above
8-
branches: [ master ]
10+
branches:
11+
- master
12+
- 'release/**'
913
schedule:
1014
#daily at 01:19 UTC
1115
- cron: '19 1 * * *'
@@ -22,7 +26,7 @@ jobs:
2226
steps:
2327
- name: Checkout repository
2428
uses: actions/checkout@v3
25-
29+
2630
# Initializes the CodeQL tools for scanning.
2731
- name: Initialize CodeQL
2832
uses: github/codeql-action/init@v2

0 commit comments

Comments
 (0)