From 332f260d67184ba26133228672835a62cad1a0c2 Mon Sep 17 00:00:00 2001 From: vados Date: Wed, 2 Oct 2024 13:30:01 +0900 Subject: [PATCH] fix(ci): disable test workflow on releases Given that releases are pre-empted by `prep-release` branches and PRs, it shouldn't be necessary to run tests on the actual released tag push to `main`. --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f74be7a..9053a5d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -2,6 +2,9 @@ name: test on: push: + tags-ignore: + - "v[0-9]+.[0-9]+.[0-9]+" + - "v[0-9]+.[0-9]+.[0-9]+*" jobs: test: