Skip to content

Commit 0e0d2c4

Browse files
Automatically propagate bridge updates on providers when a new bridge version is tagged (#2492)
This pull request changes the automatic upgrade of providers to run on tagging of the main bridge version, since we are deprecating the `pf` module.
2 parents 52f4f79 + fef00d9 commit 0e0d2c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/update-providers-auto.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Update Providers with new bridge version upon release
22
on:
33
push:
44
tags:
5-
# Typically pf* module is tagged after the main module, so this is a good time to fire off
6-
# automatic downstream upgrades.
7-
- 'pf/**'
5+
# Automatically trigger on valid patch releases of the bridge.
6+
- v*.*.*
7+
- '!v*.*.*-**' # Do not propagate prereleases
88

99
env:
1010
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)