From 6b0ce33cc463568d979bb9122aff5ca9e30c24fd Mon Sep 17 00:00:00 2001 From: sekyondaMeta <127536312+sekyondaMeta@users.noreply.github.com> Date: Tue, 3 Jun 2025 11:21:19 -0400 Subject: [PATCH] Update docathon-assign.yml Assign to me gh update --- .github/workflows/docathon-assign.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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,