File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -723,9 +723,9 @@ const create_branch_1 = __webpack_require__(515);
723
723
function run ( ) {
724
724
return __awaiter ( this , void 0 , void 0 , function * ( ) {
725
725
try {
726
- const myInput = core . getInput ( 'branch' ) ;
727
- yield create_branch_1 . createBranch ( github_1 . GitHub , github_1 . context , myInput ) ;
728
- core . debug ( `Hello ${ myInput } ` ) ;
726
+ const branch = core . getInput ( 'branch' ) ;
727
+ core . debug ( `Creating branch ${ branch } ` ) ;
728
+ yield create_branch_1 . createBranch ( github_1 . GitHub , github_1 . context , branch ) ;
729
729
}
730
730
catch ( error ) {
731
731
core . setFailed ( error . message ) ;
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ import { createBranch } from './create-branch';
4
4
5
5
async function run ( ) {
6
6
try {
7
- const myInput = core . getInput ( 'branch' ) ;
8
- await createBranch ( GitHub , context , myInput )
9
- core . debug ( `Hello ${ myInput } ` ) ;
7
+ const branch = core . getInput ( 'branch' ) ;
8
+ core . debug ( `Creating branch ${ branch } ` ) ;
9
+ await createBranch ( GitHub , context , branch )
10
10
} catch ( error ) {
11
11
core . setFailed ( error . message ) ;
12
12
}
You can’t perform that action at this time.
0 commit comments