From 73f9c3419d6fa1ea9492206a47883262df9258a1 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 29 Mar 2026 18:56:00 -0500 Subject: [PATCH] ci: restrict test.yml to branch pushes only (not tags) --- .gitea/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 95b4e892..aecc0d54 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,6 +1,10 @@ name: Test -on: [push, pull_request] +on: + push: + branches: + - '**' + pull_request: jobs: rust-fmt-check: