Skip to content

Commit 18f1af5

Browse files
authored
Make github_token not requirement (#259)
1 parent 7548625 commit 18f1af5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2031,7 +2031,7 @@ const core = __importStar(__webpack_require__(393));
20312031
function run() {
20322032
return __awaiter(this, void 0, void 0, function* () {
20332033
try {
2034-
const githubToken = core.getInput('github_token', { required: true });
2034+
const githubToken = core.getInput('github_token');
20352035
const labels = core
20362036
.getInput('labels')
20372037
.split('\n')
@@ -25472,4 +25472,4 @@ function onceStrict (fn) {
2547225472

2547325473
/***/ })
2547425474

25475-
/******/ });
25475+
/******/ });

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as core from '@actions/core';
33

44
async function run(): Promise<void> {
55
try {
6-
const githubToken = core.getInput('github_token', { required: true });
6+
const githubToken = core.getInput('github_token');
77

88
const labels = core
99
.getInput('labels')

0 commit comments

Comments
 (0)