Enable CI workflow on PRs to feat/ fix/ and janitor/ ()

This will enable for PRs that we create to other branches.
This commit is contained in:
Steven B. 2025-01-22 21:41:52 +00:00 committed by GitHub
parent 307173487a
commit acc0e9a80a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 4 deletions
.github/workflows

@ -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:

@ -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'