Skip to content

Commit

Permalink
Make github_token not requirement (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkuchiki committed Aug 11, 2021
1 parent 7548625 commit 18f1af5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2031,7 +2031,7 @@ const core = __importStar(__webpack_require__(393));
function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
const githubToken = core.getInput('github_token', { required: true });
const githubToken = core.getInput('github_token');
const labels = core
.getInput('labels')
.split('\n')
Expand Down Expand Up @@ -25472,4 +25472,4 @@ function onceStrict (fn) {

/***/ })

/******/ });
/******/ });
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as core from '@actions/core';

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

const labels = core
.getInput('labels')
Expand Down

0 comments on commit 18f1af5

Please sign in to comment.