File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2031,7 +2031,7 @@ const core = __importStar(__webpack_require__(393));
2031
2031
function run() {
2032
2032
return __awaiter(this, void 0, void 0, function* () {
2033
2033
try {
2034
- const githubToken = core.getInput('github_token', { required: true } );
2034
+ const githubToken = core.getInput('github_token');
2035
2035
const labels = core
2036
2036
.getInput('labels')
2037
2037
.split('\n')
@@ -25472,4 +25472,4 @@ function onceStrict (fn) {
25472
25472
25473
25473
/***/ })
25474
25474
25475
- /******/ });
25475
+ /******/ });
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import * as core from '@actions/core';
3
3
4
4
async function run ( ) : Promise < void > {
5
5
try {
6
- const githubToken = core . getInput ( 'github_token' , { required : true } ) ;
6
+ const githubToken = core . getInput ( 'github_token' ) ;
7
7
8
8
const labels = core
9
9
. getInput ( 'labels' )
You can’t perform that action at this time.
0 commit comments