Skip to content

Commit

Permalink
fix(ci): disable test workflow on releases
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
t3hmrman committed Oct 2, 2024
1 parent cbbe119 commit 332f260
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 332f260

Please sign in to comment.