Skip to content

Commit 94671d1

Browse files
author
Peter Grainger
committed
changed input value in def
1 parent f7e86db commit 94671d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ const create_branch_1 = __webpack_require__(515);
723723
function run() {
724724
return __awaiter(this, void 0, void 0, function* () {
725725
try {
726-
const myInput = core.getInput('myInput');
726+
const myInput = core.getInput('branch');
727727
yield create_branch_1.createBranch(github_1.GitHub, github_1.context, myInput);
728728
core.debug(`Hello ${myInput}`);
729729
}

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { createBranch } from './create-branch';
44

55
async function run() {
66
try {
7-
const myInput = core.getInput('myInput');
7+
const myInput = core.getInput('branch');
88
await createBranch(GitHub, context, myInput)
99
core.debug(`Hello ${myInput}`);
1010
} catch (error) {

0 commit comments

Comments
 (0)