From e429786696cca0f7984bbde4704bbe87bf0fa4a2 Mon Sep 17 00:00:00 2001 From: cs_savannah <31+cs_savannah@noreply.git.farh.net> Date: Thu, 21 May 2026 14:37:47 +0000 Subject: [PATCH] fix(ci): add uat branch to workflow triggers The on.push and on.pull_request triggers only listed [main, dev]. The deploy-uat job condition checks for refs/heads/uat but the workflow never fires on uat pushes. Add uat to both trigger lists. Co-Authored-By: Paperclip --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d0ddc69..57e5255 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [main, dev] + branches: [main, dev, uat] pull_request: - branches: [main, dev] + branches: [main, dev, uat] concurrency: group: ci-${{ github.ref }}