From 57065b15d0a5ed92916d685798b7bc0b474da225 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Dudfield?= Date: Thu, 27 Jun 2024 17:38:40 +0200 Subject: [PATCH] github: Adding rc- and testing-rc- branches to be tested MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit So we can run our tests on the rc branches as well. Signed-off-by: René Dudfield --- .github/workflows/app.yml | 2 ++ .github/workflows/backend-test.yml | 7 ++++++- .github/workflows/backend.yml | 2 ++ .github/workflows/build-container.yml | 7 ++++++- .github/workflows/frontend.yml | 2 ++ .github/workflows/helm-chart-lint-test.yml | 7 ++++++- .github/workflows/helm-chart-template-test.yml | 7 ++++++- 7 files changed, 30 insertions(+), 4 deletions(-) diff --git a/.github/workflows/app.yml b/.github/workflows/app.yml index e768b7812a9..485679ae4cf 100644 --- a/.github/workflows/app.yml +++ b/.github/workflows/app.yml @@ -11,6 +11,8 @@ on: push: branches: - main + - rc-* + - testing-rc-* paths: - 'frontend/**' - Makefile diff --git a/.github/workflows/backend-test.yml b/.github/workflows/backend-test.yml index 50ff2a68f7c..0e52a8bb8a6 100644 --- a/.github/workflows/backend-test.yml +++ b/.github/workflows/backend-test.yml @@ -4,7 +4,12 @@ on: pull_request: paths: - 'backend/**' - + push: + branches: + - main + - rc-* + - testing-rc-* + permissions: contents: read diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 43b387d3fe3..5404e853423 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -8,6 +8,8 @@ on: push: branches: - main + - rc-* + - testing-rc-* paths: - 'backend/**' - Makefile diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index 97c9b033c8f..d84110fdef0 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -14,7 +14,12 @@ on: - Dockerfile - Dockerfile.plugins - 'e2e-tests/**' - + push: + branches: + - main + - rc-* + - testing-rc-* + permissions: contents: read diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index d8448e3d886..61fc33ab999 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -11,6 +11,8 @@ on: push: branches: - main + - rc-* + - testing-rc-* paths: - "frontend/**" - Makefile diff --git a/.github/workflows/helm-chart-lint-test.yml b/.github/workflows/helm-chart-lint-test.yml index e9acf931e1b..c3b0a254922 100644 --- a/.github/workflows/helm-chart-lint-test.yml +++ b/.github/workflows/helm-chart-lint-test.yml @@ -5,7 +5,12 @@ on: paths: - charts/** - '!charts/**/README.md' - + push: + branches: + - main + - rc-* + - testing-rc-* + permissions: contents: read diff --git a/.github/workflows/helm-chart-template-test.yml b/.github/workflows/helm-chart-template-test.yml index 30cb53b6286..dddea92adc1 100644 --- a/.github/workflows/helm-chart-template-test.yml +++ b/.github/workflows/helm-chart-template-test.yml @@ -5,7 +5,12 @@ on: paths: - charts/** - '!charts/**/README.md' - + push: + branches: + - main + - rc-* + - testing-rc-* + permissions: contents: read