From 9f1df96ea730696922eba640e97dc1f4907fee3e Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Mon, 22 Jun 2026 16:57:56 +0200 Subject: [PATCH] ci: restrict push trigger to main branch Replace the wildcard `['**']` in the push trigger with `['main']`. This prevents redundant pipeline runs on non-main branches during push events. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7c2b524..ae5729f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: ['**'] + branches: ['main'] pull_request: jobs: