From 5fec32327f27e4d1690297c470f8e30c5ed61e24 Mon Sep 17 00:00:00 2001 From: max Date: Fri, 4 Sep 2026 23:08:19 +0200 Subject: [PATCH] ci: prevent ci.yml from triggering on tag pushes --- .gitea/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4717652..789732a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,12 +6,15 @@ on: - '**' tags-ignore: - '*' + - '**' + - 'v*' pull_request: workflow_dispatch: jobs: test: name: Run Component Tests & Pipeline Verification + if: "!startsWith(github.ref, 'refs/tags/')" runs-on: ubuntu-latest steps: - name: Checkout Code