From d67e1c079011c91463f75653f4461e4ff755e2d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Fr=C3=B3es=20Franco?= Date: Wed, 3 Jun 2026 20:21:43 -0300 Subject: [PATCH] ci: pin pull_request trigger to main branch Gitea Actions requires branches filter on pull_request triggers to match the target branch, otherwise PRs never fire the workflow. --- .gitea/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 8a0d00f..fecb581 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -4,6 +4,7 @@ on: push: branches: [main] pull_request: + branches: [main] concurrency: group: ci-${{ github.ref }}