Skip to content

Commit

Permalink
Make github_token no longer required as input (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
asawo authored Sep 8, 2021
1 parent 98bf72d commit 2ce5d41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,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
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 2ce5d41

Please sign in to comment.