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
This commit is contained in:
Weihang Lo 2024-12-15 23:01:32 +00:00 committed by GitHub
commit e5c4dc65c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ name: Release
on:
push:
tags:
- "**"
- "0.*"
# Prevent multiple releases from starting at the same time.
concurrency: