Skip to content

Commit e5c4dc6

Browse files
authored
Limit release trigger to 0.* tags (#14940)
This changes the release trigger to only run when a tag matching the pattern `0.*` is created. The intent is to allow us to create tags for other crates that we may release out-of-band of the normal releases (and maybe consider creating tags for all crates to make them easier to find). For example, I would like to create `home-0.5.11` tags (and earlier versions that were missed due to this trigger). cc #14538
2 parents 769f622 + f18cbda commit e5c4dc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Release
66
on:
77
push:
88
tags:
9-
- "**"
9+
- "0.*"
1010

1111
# Prevent multiple releases from starting at the same time.
1212
concurrency:

0 commit comments

Comments
 (0)