fix branch token input
This commit is contained in:
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -1406,7 +1406,7 @@ function run() {
|
||||
try {
|
||||
const inputs = {
|
||||
token: core.getInput('token'),
|
||||
branchToken: core.getInput('git-token'),
|
||||
branchToken: core.getInput('branch-token'),
|
||||
path: core.getInput('path'),
|
||||
addPaths: utils.getInputAsArray('add-paths'),
|
||||
commitMessage: core.getInput('commit-message'),
|
||||
|
@ -7,7 +7,7 @@ async function run(): Promise<void> {
|
||||
try {
|
||||
const inputs: Inputs = {
|
||||
token: core.getInput('token'),
|
||||
branchToken: core.getInput('git-token'),
|
||||
branchToken: core.getInput('branch-token'),
|
||||
path: core.getInput('path'),
|
||||
addPaths: utils.getInputAsArray('add-paths'),
|
||||
commitMessage: core.getInput('commit-message'),
|
||||
|
Reference in New Issue
Block a user