Skip to content

Commit 0ce57aa

Browse files
committed
Fix unstable channel workflow trigger
Update the branch pattern to 'version-*-dev' to support 3-digit version branches like 'version-1.54.1-dev'. Also add 'workflow_dispatch' to support manual triggering.
1 parent 489ca8c commit 0ce57aa

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/unstable-channel.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Unstable channel
33
on:
44
push:
55
branches:
6-
- 'version-[0-9]+.[0-9]+-dev'
6+
- 'version-*-dev'
7+
workflow_dispatch:
78

89
permissions:
910
contents: read

0 commit comments

Comments
 (0)