Skip to content

Commit

Permalink
Update CodeQL workflow to run on dev branch PRs
Browse files Browse the repository at this point in the history
Run CodeQL jobs for `development` branch in addition to the
current stable branch.

refs GH-276
  • Loading branch information
atc0005 committed Jul 25, 2024
1 parent 2cafb07 commit d27a551
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,19 @@ name: "CodeQL"

on:
push:
branches: [master]
branches:
- master
- development

pull_request:
# `synchronized` seems to equate to pushing new commits to a linked branch
# (whether force-pushed or not)
types: [opened, synchronize]

# The branches below must be a subset of the branches above
branches: [master]
branches:
- master
- development

schedule:
- cron: "00 4 * * 0"
Expand Down

0 comments on commit d27a551

Please sign in to comment.