diff --git a/.github/workflows/docathon-assign.yml b/.github/workflows/docathon-assign.yml index 31fa28289b0..8eef2b2fc88 100644 --- a/.github/workflows/docathon-assign.yml +++ b/.github/workflows/docathon-assign.yml @@ -28,14 +28,14 @@ jobs: repo: context.repo.repo, issue_number: issueNumber }); - const hasLabel = issue.labels.some(label => label.name === 'docathon-h1-2024'); + const hasLabel = issue.labels.some(label => label.name === 'docathon-h1-2025'); if (hasLabel) { if (issue.assignee !== null) { await github.rest.issues.createComment({ owner: context.repo.owner, repo: context.repo.repo, issue_number: issueNumber, - body: "The issue is already assigned. Please pick an opened and unnasigned issue with the [docathon-h1-2024 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-h1-2024)." + body: "The issue is already assigned. Please pick an opened and unnasigned issue with the [docathon-h1-2025 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-h1-2025)." }); } else { await github.rest.issues.addAssignees({ @@ -46,7 +46,7 @@ jobs: }); } } else { - const commmentMessage = "This issue does not have the correct label. Please pick an opened and unnasigned issue with the [docathon-h1-2024 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-h1-2024)." + const commmentMessage = "This issue does not have the correct label. Please pick an opened and unnasigned issue with the [docathon-h1-2025 label](https://github.com/pytorch/pytorch/issues?q=is%3Aopen+is%3Aissue+label%3Adocathon-h1-2025)." await github.rest.issues.createComment({ owner: context.repo.owner, repo: context.repo.repo,