From 250242bb58915b7e63b7dd178a71967f9282ea8e Mon Sep 17 00:00:00 2001 From: Huy Do Date: Wed, 7 Feb 2024 11:08:25 -0800 Subject: [PATCH] Send the classification category when cherry picking a PR (#4932) Fixes a small bug in https://github.com/pytorch/test-infra/pull/4758 where the classification category itself wasn't sent over in the dispatch event. --- torchci/lib/bot/pytorchBotHandler.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/torchci/lib/bot/pytorchBotHandler.ts b/torchci/lib/bot/pytorchBotHandler.ts index 64d0855bd7..0ad1387f3b 100644 --- a/torchci/lib/bot/pytorchBotHandler.ts +++ b/torchci/lib/bot/pytorchBotHandler.ts @@ -456,6 +456,7 @@ The explanation needs to be clear on why this is needed. Here are some good exam await this.dispatchEvent("try-cherry-pick", { branch: branch, fixes: fixes, + classification: classification, requiresIssue: classificationData.requiresIssue, classificationHelp: classificationData.help, });