From 00b6f2064bef267a061c9108aaedd29aaaada870 Mon Sep 17 00:00:00 2001 From: TapTap Date: Mon, 20 Jul 2026 17:26:58 +0200 Subject: [PATCH] ci: only trigger push on main to avoid double CI runs --- .gitea/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 090a7ad..82cd6af 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -1,6 +1,9 @@ name: CI -on: [push, pull_request] +on: + push: + branches: [main] + pull_request: jobs: lint: