From acdb3c000816fdffb6dcaa4a0ec448f278b740ed Mon Sep 17 00:00:00 2001 From: tpikachu <46133358+tpikachu@users.noreply.github.com> Date: Fri, 23 Feb 2024 12:09:43 -0600 Subject: [PATCH] fix --- dist/index.js | 4 ++-- src/index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 5cbc6d3..bd42b0e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -32414,8 +32414,8 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms)); workflow_id: dispatchWorkflow, ref: branch, inputs: { - repo: config.input.owner + "/" + config.input.repo, - branch: config.input.branch, + repo: config.githubContext.owner + "/" + config.githubContext.repo, + branch: config.githubContext.branch, dispatchId, comment: config.input.prompt, isFromAction: true, diff --git a/src/index.js b/src/index.js index b3508bc..a33102c 100644 --- a/src/index.js +++ b/src/index.js @@ -30,8 +30,8 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms)); workflow_id: dispatchWorkflow, ref: branch, inputs: { - repo: config.input.owner + "/" + config.input.repo, - branch: config.input.branch, + repo: config.githubContext.owner + "/" + config.githubContext.repo, + branch: config.githubContext.branch, dispatchId, comment: config.input.prompt, isFromAction: true,