From acc0e9a80adf1be0e07719888da6fbe6a309d9e3 Mon Sep 17 00:00:00 2001 From: "Steven B." <51370195+sdb9696@users.noreply.github.com> Date: Wed, 22 Jan 2025 21:41:52 +0000 Subject: [PATCH] Enable CI workflow on PRs to feat/ fix/ and janitor/ (#1471) This will enable for PRs that we create to other branches. --- .github/workflows/ci.yml | 11 +++++++++-- .github/workflows/codeql-analysis.yml | 11 +++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8c145cc..0c3643b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,16 @@ name: CI on: push: - branches: ["master", "patch"] + branches: + - master + - patch pull_request: - branches: ["master", "patch"] + branches: + - master + - patch + - 'feat/**' + - 'fix/**' + - 'janitor/**' workflow_dispatch: # to allow manual re-runs env: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 29d53358..9edba483 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -2,9 +2,16 @@ name: "CodeQL checks" on: push: - branches: [ "master", "patch" ] + branches: + - master + - patch pull_request: - branches: [ master, "patch" ] + branches: + - master + - patch + - 'feat/**' + - 'fix/**' + - 'janitor/**' schedule: - cron: '44 17 * * 3'