Skip to content

Commit

Permalink
Fix the RELEASE_BRANCH_PATTERN
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentClarret committed Nov 29, 2024
1 parent 96c83b8 commit 5aa32c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/libs/ciproviders/github_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

__all__ = ["GithubAPI"]

RELEASE_BRANCH_PATTERN = re.compile(r"\d+\.\d+\.x")
RELEASE_BRANCH_PATTERN = re.compile(r"^\d+\.\d+\.x$")


class GithubAPI:
Expand Down

0 comments on commit 5aa32c6

Please sign in to comment.