From e0c0b37621c9b5b92dc699873e2d36715910f8aa Mon Sep 17 00:00:00 2001 From: umarcor Date: Tue, 7 Dec 2021 04:45:33 +0100 Subject: [PATCH] ci/TestReleaser: do not run on 'v*' tags or 'r*' branches --- .github/workflows/TestReleaser.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/TestReleaser.yml b/.github/workflows/TestReleaser.yml index b0c6937..e9035e4 100644 --- a/.github/workflows/TestReleaser.yml +++ b/.github/workflows/TestReleaser.yml @@ -5,8 +5,10 @@ on: tags: - '*' - '!tip' + - '!v*' branches: - '**' + - '!r*' workflow_dispatch: schedule: - cron: '0 0 * * 4'