Skip to content

Commit

Permalink
[inductor] fix typo in inductor bot (#5706)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaliC authored Sep 25, 2024
1 parent 25d644e commit cbba690
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion torchci/lib/bot/triggerInductorTestsBot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions torchci/test/triggerInductorTestsBot.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"}}`
Expand Down Expand Up @@ -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"}}`
Expand Down

0 comments on commit cbba690

Please sign in to comment.