We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7855a2 commit 86a33baCopy full SHA for 86a33ba
check_nightly_success/check-nightly-success/check.py
@@ -71,9 +71,9 @@ def main(
71
branch_dict[run["head_branch"]].append(run)
72
73
for branch, branch_runs in branch_dict.items():
74
- # Only consider RAPIDS development branches, which are named 'main' or
75
- # have versions like '25.02' (RAPIDS CalVer) or '0.42' (ucxx, ucx-py)
76
- if branch != "main" and not re.match("branch-[0-9]{1,2}.[0-9]{2}", branch):
+ # Only consider RAPIDS release branches, which have versions like
+ # '25.02' (RAPIDS) or '0.42' (ucxx, ucx-py).
+ if not re.match("branch-[0-9]{1,2}.[0-9]{2}", branch):
77
continue
78
79
latest_success[branch] = None
0 commit comments