From cbf32d11bec21685d9894e0b64b2da22d95a67a4 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Sun, 31 Aug 2025 09:57:53 +0200 Subject: [PATCH] Add keycloak-testing branch to workflow triggers This update modifies the GitHub Actions workflow for building the Keycloak chart. In addition to the existing trigger for the main branch, a new trigger has been added for the keycloak-testing branch. This change allows for more flexible testing and deployment scenarios by enabling the workflow to run on changes pushed to the keycloak-testing branch. No breaking changes are introduced with this update, and the workflow paths remain unchanged, still focusing on the "charts/keycloak/Chart.yaml" file. --- .gitea/workflows/build-chart-keycloak.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/build-chart-keycloak.yml b/.gitea/workflows/build-chart-keycloak.yml index 932c391..eefb081 100644 --- a/.gitea/workflows/build-chart-keycloak.yml +++ b/.gitea/workflows/build-chart-keycloak.yml @@ -3,6 +3,7 @@ on: push: branches: - main + - keycloak-testing paths: - "charts/keycloak/Chart.yaml"