From bead0c737303fb7e83b3be0c5dbd121b00351b90 Mon Sep 17 00:00:00 2001 From: adilallo <39313955+adilallo@users.noreply.github.com> Date: Fri, 29 Aug 2025 21:52:06 -0600 Subject: [PATCH] Fix duplicate triggers: Only run CI on PRs to main/develop, not feature branch pushes --- .gitea/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 2a4265b..e27d05c 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -4,9 +4,10 @@ run-name: ${{ gitea.actor }} triggered CI pipeline on: workflow_dispatch: {} push: - branches: [main, develop, "fix-runner-trigger"] + branches: [main, develop] # only direct pushes/merges to protected branches pull_request: - branches: [main, develop] + branches: [main, develop] # PRs into main/develop + types: [opened, reopened, synchronize] jobs: canary: