Skip to content

Commit d7ce09f

Browse files
committed
Keep running CodeQL on all branches, etc.
This restores three aspects of the previous `codeql.yml`: - Run it on all branches, not just `main`. - Run it on the previous schedule rather than the new one, since there's no reason to change the schedule (though there's no reason to be attached to the old schedule either). - Use "CodeQL" rather than "CodeQL Advanced" as the workflow `name`, since this takes up less horizontal space when reading the reports from the checks. Of these, only the first is really significant.
1 parent 847ead6 commit d7ce09f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "CodeQL Advanced"
12+
name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ "main" ]
1716
pull_request:
18-
branches: [ "main" ]
1917
schedule:
20-
- cron: '36 18 * * 0'
18+
- cron: '27 10 * * 3'
2119

2220
jobs:
2321
analyze:

0 commit comments

Comments
 (0)