We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ce4d58 commit 2de596fCopy full SHA for 2de596f
dev-packages/release-comment-issues-gh-action/index.mjs
@@ -4,10 +4,11 @@ import { context, getOctokit } from '@actions/github';
4
async function run() {
5
const { getInput } = core;
6
7
- const githubToken = getInput('gh_token');
+ const githubToken = getInput('github_token');
8
const version = getInput('version');
9
10
if (!githubToken || !version) {
11
+ core.debug('Skipping because github_token or version are empty.');
12
return;
13
}
14
0 commit comments