Skip to content

Commit

Permalink
changed input value in def
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Grainger committed Sep 19, 2019
1 parent f7e86db commit 94671d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 94671d1

Please sign in to comment.