From 7b02a55a115256f60425040ef62b6d50e9db7a53 Mon Sep 17 00:00:00 2001 From: Chevdor Date: Mon, 25 Jul 2022 16:42:47 +0200 Subject: [PATCH] Add missing trigger wildcards for some CI workflows (#5812) --- polkadot/.github/workflows/release-01_branch-check.yml | 3 ++- polkadot/.github/workflows/release-10_candidate.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/polkadot/.github/workflows/release-01_branch-check.yml b/polkadot/.github/workflows/release-01_branch-check.yml index 2cd1b5e9b5..f2b559b7c1 100644 --- a/polkadot/.github/workflows/release-01_branch-check.yml +++ b/polkadot/.github/workflows/release-01_branch-check.yml @@ -2,7 +2,8 @@ name: Release - Branch check on: push: branches: - - release-v[0-9]+.[0-9]+.[0-9]+ + # Catches v1.2.3 and v1.2.3-rc1 + - release-v[0-9]+.[0-9]+.[0-9]+* workflow_dispatch: diff --git a/polkadot/.github/workflows/release-10_candidate.yml b/polkadot/.github/workflows/release-10_candidate.yml index a57ba7da59..51a82bc4f5 100644 --- a/polkadot/.github/workflows/release-10_candidate.yml +++ b/polkadot/.github/workflows/release-10_candidate.yml @@ -2,7 +2,8 @@ name: Release - RC automation on: push: branches: - - release-v[0-9]+.[0-9]+.[0-9]+ + # Catches v1.2.3 and v1.2.3-rc1 + - release-v[0-9]+.[0-9]+.[0-9]+* jobs: tag_rc: runs-on: ubuntu-latest