From d27a551db38731d919e5bb5de544ea7bd7fcc9be Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Thu, 25 Jul 2024 06:12:16 -0500 Subject: [PATCH] Update CodeQL workflow to run on dev branch PRs Run CodeQL jobs for `development` branch in addition to the current stable branch. refs GH-276 --- .github/workflows/codeql.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e5aac1b..e446b5f 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -9,7 +9,9 @@ name: "CodeQL" on: push: - branches: [master] + branches: + - master + - development pull_request: # `synchronized` seems to equate to pushing new commits to a linked branch @@ -17,7 +19,9 @@ on: types: [opened, synchronize] # The branches below must be a subset of the branches above - branches: [master] + branches: + - master + - development schedule: - cron: "00 4 * * 0"