Skip to content

Commit 2de596f

Browse files
committed
fix input
1 parent 6ce4d58 commit 2de596f

File tree

1 file changed

+2
-1
lines changed
  • dev-packages/release-comment-issues-gh-action

1 file changed

+2
-1
lines changed

dev-packages/release-comment-issues-gh-action/index.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ import { context, getOctokit } from '@actions/github';
44
async function run() {
55
const { getInput } = core;
66

7-
const githubToken = getInput('gh_token');
7+
const githubToken = getInput('github_token');
88
const version = getInput('version');
99

1010
if (!githubToken || !version) {
11+
core.debug('Skipping because github_token or version are empty.');
1112
return;
1213
}
1314

0 commit comments

Comments
 (0)