diff --git a/torchci/lib/bot/triggerInductorTestsBot.ts b/torchci/lib/bot/triggerInductorTestsBot.ts index 92961dd770..133c4fe216 100644 --- a/torchci/lib/bot/triggerInductorTestsBot.ts +++ b/torchci/lib/bot/triggerInductorTestsBot.ts @@ -21,7 +21,7 @@ export default function triggerInductorTestsBot(app: Probot): void { ) { const workflow_owner = "pytorch"; const workflow_repo = "pytorch-integration-testing"; - const workflow_id = "triton-inductor.yml"; + const workflow_id = "inductor.yml"; const pytorchCommit = "viable/strict"; let tritonCommit = "main"; diff --git a/torchci/test/triggerInductorTestsBot.test.ts b/torchci/test/triggerInductorTestsBot.test.ts index 077c434d44..f12882c44c 100644 --- a/torchci/test/triggerInductorTestsBot.test.ts +++ b/torchci/test/triggerInductorTestsBot.test.ts @@ -30,7 +30,7 @@ describe("trigger-inductor-tests-bot", () => { .post("/repos/malfet/deleteme/issues/comments/890173751/reactions") .reply(200, {}) .post( - "/repos/pytorch/pytorch-integration-testing/actions/workflows/triton-inductor.yml/dispatches", + "/repos/pytorch/pytorch-integration-testing/actions/workflows/inductor.yml/dispatches", (body) => { expect(JSON.stringify(body)).toContain( `{"ref":"main","inputs\":{"triton_commit":"main","pytorch_commit":"viable/strict"}}` @@ -71,7 +71,7 @@ describe("trigger-inductor-tests-bot", () => { }, }) .post( - "/repos/pytorch/pytorch-integration-testing/actions/workflows/triton-inductor.yml/dispatches", + "/repos/pytorch/pytorch-integration-testing/actions/workflows/inductor.yml/dispatches", (body) => { expect(JSON.stringify(body)).toContain( `{"ref":"main","inputs\":{"triton_commit":"custom_triton_sha","pytorch_commit":"viable/strict"}}`