Skip to content

Commit

Permalink
fix(create_qa_cards): Use the correct regex pattern (#30159)
Browse files Browse the repository at this point in the history
(cherry picked from commit 55fff19)
  • Loading branch information
chouetz authored and github-actions[bot] committed Oct 16, 2024
1 parent dc31fb7 commit 45df956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ def create_qa_cards(ctx, tag):
"""
from tasks.libs.releasing.qa import get_labels, setup_ddqa

version = _create_version_from_match(RC_VERSION_RE.match(tag))
version = _create_version_from_match(VERSION_RE.match(tag))
if not version.rc:
print(f"{tag} is not a release candidate, skipping")
return
Expand Down

0 comments on commit 45df956

Please sign in to comment.