From c71cb72a29872bdd9eaef33ad66f4c061bbb5fc0 Mon Sep 17 00:00:00 2001 From: Paul Pfeister Date: Sat, 29 Jun 2024 00:48:59 -0400 Subject: [PATCH] Add release branches to ci Closes #2194 --- .github/workflows/regression.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 34b6f8c7..1ff20f90 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -2,7 +2,9 @@ name: Regression Testing on: pull_request: - branches: [ master ] + branches: + - master + - release/** paths: - '.github/workflows/regression.yml' - '**/*.json' @@ -10,7 +12,9 @@ on: - '**/*.ini' - '**/*.toml' push: - branches: [ master ] + branches: + - master + - release/** paths: - '.github/workflows/regression.yml' - '**/*.json'