Skip to content

Commit

Permalink
fix : inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 3, 2024
1 parent 07cc1c9 commit e5e02de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ const action = new CopybaraAction({

// Common config
sot: {
repo: createAuthenticatedUrl(core.getInput("access_token"),core.getInput("sot_repo")),
repo: createAuthenticatedUrl(core.getInput("sot_repo"),core.getInput("access_token"),),
branch: core.getInput("sot_branch"),
},
destination: {
repo: createAuthenticatedUrl(core.getInput("access_token"),core.getInput("destination_repo")),
repo: createAuthenticatedUrl(core.getInput("destination_repo"),core.getInput("access_token"),),
branch: core.getInput("destination_branch"),
},
committer: core.getInput("committer"),
Expand Down

0 comments on commit e5e02de

Please sign in to comment.