From 4732c5daf3c5eded07cfe2c1f5a20a9d62d055a7 Mon Sep 17 00:00:00 2001 From: Twest2 Date: Mon, 15 Jun 2026 10:29:26 -0500 Subject: [PATCH] Limit CI test run to main and manual triggers Pushes to main (direct commits and merged PRs) and manual workflow_dispatch now trigger the test job; feature-branch pushes and PR open/sync no longer do. --- .gitea/workflows/tests.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml index 39efead..1bc5c22 100644 --- a/.gitea/workflows/tests.yaml +++ b/.gitea/workflows/tests.yaml @@ -2,11 +2,9 @@ name: Template tests on: push: - pull_request: - types: - - opened - - synchronize - - reopened + branches: + - main + workflow_dispatch: jobs: tests: