From 1cde5f9b025e33584d59f56a86d4694ff2dc9c1f Mon Sep 17 00:00:00 2001 From: Nigel Jones Date: Tue, 2 Mar 2021 10:53:29 +0000 Subject: [PATCH] Fix build pipeline for non-main branch Signed-off-by: Nigel Jones --- .github/workflows/codeql-analysis.yml | 4 ++-- .github/workflows/node-build.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 45a08a5a..c078d0b3 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -10,10 +10,10 @@ name: "CodeQL" on: push: - branches: [main] + branches: [main,release-*] pull_request: # The branches below must be a subset of the branches above - branches: [main] + branches: [main,release-*] schedule: - cron: '0 20 * * 0' diff --git a/.github/workflows/node-build.yml b/.github/workflows/node-build.yml index 9ee1ebd2..82a782fa 100644 --- a/.github/workflows/node-build.yml +++ b/.github/workflows/node-build.yml @@ -5,9 +5,9 @@ name: Egeria react UI build on: push: - branches: [main] + branches: [main,release-*] pull_request: - branches: [main] + branches: [main,release-*] # Run client/server in parallel. # Code checkout is small so low overhead,