diff --git a/.github/scripts/docathon-label-sync.py b/.github/scripts/docathon-label-sync.py index a8e512a3204..7eeca6f7659 100644 --- a/.github/scripts/docathon-label-sync.py +++ b/.github/scripts/docathon-label-sync.py @@ -25,11 +25,11 @@ def main(): issue_number = int(re.findall(r'#(\d{1,5})', pull_request_body)[0]) issue = repo.get_issue(issue_number) issue_labels = issue.labels - docathon_label_present = any(label.name == 'docathon-h1-2024' for label in issue_labels) + docathon_label_present = any(label.name == 'docathon-h1-2025' for label in issue_labels) # if the issue has a docathon label, add all labels from the issue to the PR. if not docathon_label_present: - print("The 'docathon-h1-2024' label is not present in the issue.") + print("The 'docathon-h1-2025' label is not present in the issue.") return pull_request_labels = pull_request.get_labels() issue_label_names = [label.name for label in issue_labels]