Skip to content

Commit

Permalink
Remove console.log and unnecessary return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
austenstone committed Jan 30, 2024
1 parent f940ec0 commit 18e50bb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@ export function getInputs(): Input {
if (!result.token || result.token === "") {
throw new Error("github-token is required");
}
console.log(result)
return result;
}

const run = async (): Promise<void> => {
const input = getInputs();
return;
const octokit = getOctokit(input.token);

const {
Expand Down

0 comments on commit 18e50bb

Please sign in to comment.