From 94671d1eb991c722a748e99690823ebc7475ae7c Mon Sep 17 00:00:00 2001 From: Peter Grainger Date: Thu, 19 Sep 2019 14:10:29 +0100 Subject: [PATCH] changed input value in def --- dist/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 31fbdfc..8c04bdd 100644 --- a/dist/index.js +++ b/dist/index.js @@ -723,7 +723,7 @@ const create_branch_1 = __webpack_require__(515); function run() { return __awaiter(this, void 0, void 0, function* () { try { - const myInput = core.getInput('myInput'); + const myInput = core.getInput('branch'); yield create_branch_1.createBranch(github_1.GitHub, github_1.context, myInput); core.debug(`Hello ${myInput}`); } diff --git a/src/main.ts b/src/main.ts index 278b96f..b7dcba5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,7 +4,7 @@ import { createBranch } from './create-branch'; async function run() { try { - const myInput = core.getInput('myInput'); + const myInput = core.getInput('branch'); await createBranch(GitHub, context, myInput) core.debug(`Hello ${myInput}`); } catch (error) {