Skip to content

Commit

Permalink
fix: not all releases start with v (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
LesnyRumcajs authored Jul 18, 2024
1 parent 4577a86 commit add2491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mirror-actors/mirror_actors/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from github import Github

GITHUB_REPO = "filecoin-project/builtin-actors"
RELEASE_PATTERN = r'^v\d+\.\d+\.\d+.*$'
RELEASE_PATTERN = r'^v?\d+\.\d+\.\d+.*$'

# Initialize GitHub client
github = Github()
Expand Down

0 comments on commit add2491

Please sign in to comment.