Skip to content

Commit

Permalink
chore: log if token is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
nilslice committed Jan 19, 2024
1 parent 6066825 commit 12e4a91
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ async function actism(input, steps, wasi, outputType, test) {

let githubToken = core.getInput('github_token');
githubToken = githubToken.trim();
if (githubToken.length === 0) {
core.info("No `github_token` was read from input");
}

// for each step, run the step() function in the module with the input from the previous step
let pipelineData = input;
Expand Down

0 comments on commit 12e4a91

Please sign in to comment.