Skip to content

Commit

Permalink
removing some console.logs as they are not needed rn
Browse files Browse the repository at this point in the history
  • Loading branch information
TaylorFries committed Nov 8, 2024
1 parent b42209b commit d38582e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/helpers/github-api/github-api-requests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function closeIssue(issue_number) {
issue_number,
state: "closed",
});
console.log("close issue: ", response.data);
//console.log("close issue: ", response.data);
return response;
}

Expand Down Expand Up @@ -102,7 +102,7 @@ export async function findIssues(state = "open") {
repo: GITHUB_REPO,
state, // Get issues that are 'open', 'closed' or 'all'.
});
console.log("found issue: ", response.data);
//console.log("found issue: ", response.data);
return response;
}

Expand Down
2 changes: 1 addition & 1 deletion .github/helpers/github-api/update-issue-and-comment.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const closeAndCreateIssue = async (issueTitle, issueBody) => {

// Create new Issue.
const newIssue = await createIssue(issueTitle, decodeURIComponent(issueBody));
newIssueStatus = checkStatus(newIssue);
const newIssueStatus = checkStatus(newIssue);

if (newIssueStatus !== SUCCESS) {
// if we didnt make the new issue we have to exit
Expand Down

0 comments on commit d38582e

Please sign in to comment.