From 050cdca4aeaaa5f32972c65cf0f76e6aee8d2ccc Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 4 Jan 2022 13:24:40 -0600 Subject: [PATCH] Run the "push tag" CI on all release branches (#3644) This updates our `push-tag.yml` workflow to check all commits to `release-*` branches in addition to the `main` branch for cmomits which should be tagged. --- .github/workflows/push-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-tag.yml b/.github/workflows/push-tag.yml index 09b5dbff0b..cf896eacbf 100644 --- a/.github/workflows/push-tag.yml +++ b/.github/workflows/push-tag.yml @@ -10,7 +10,7 @@ name: "Push tagged release" on: push: - branches: [main] + branches: ['main', 'release-*'] jobs: push_tag: