File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ def main():
25
25
issue_number = int (re .findall (r'#(\d{1,5})' , pull_request_body )[0 ])
26
26
issue = repo .get_issue (issue_number )
27
27
issue_labels = issue .labels
28
- docathon_label_present = any (label .name == 'docathon-h1-2024 ' for label in issue_labels )
28
+ docathon_label_present = any (label .name == 'docathon-h1-2025 ' for label in issue_labels )
29
29
30
30
# if the issue has a docathon label, add all labels from the issue to the PR.
31
31
if not docathon_label_present :
32
- print ("The 'docathon-h1-2024 ' label is not present in the issue." )
32
+ print ("The 'docathon-h1-2025 ' label is not present in the issue." )
33
33
return
34
34
pull_request_labels = pull_request .get_labels ()
35
35
issue_label_names = [label .name for label in issue_labels ]
You can’t perform that action at this time.
0 commit comments