Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tpikachu committed Feb 23, 2024
1 parent 22c9eff commit acdb3c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit acdb3c0

Please sign in to comment.