From fef00d949a8ce85a315cd03b4cef71d774cf6031 Mon Sep 17 00:00:00 2001 From: guineveresaenger Date: Wed, 16 Oct 2024 16:03:38 -0700 Subject: [PATCH] Automatically propagate bridge updates on providers when a new bridge version is tagged --- .github/workflows/update-providers-auto.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-providers-auto.yml b/.github/workflows/update-providers-auto.yml index 993651419..436ab4907 100644 --- a/.github/workflows/update-providers-auto.yml +++ b/.github/workflows/update-providers-auto.yml @@ -2,9 +2,9 @@ name: Update Providers with new bridge version upon release on: push: tags: - # Typically pf* module is tagged after the main module, so this is a good time to fire off - # automatic downstream upgrades. - - 'pf/**' + # Automatically trigger on valid patch releases of the bridge. + - v*.*.* + - '!v*.*.*-**' # Do not propagate prereleases env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}