Skip to content

Commit

Permalink
maybe a fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
TaylorFries committed Nov 6, 2024
1 parent 0d52078 commit a4fc1cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ export const createAndCloseExistingIssue = async (issueTitle, issueBody, issueCo
// Create new Issue.
await createIssue(issueTitle, decodeURIComponent(issueBody));

setTimeout(() => {
console.log("pausing for issue to be created...", 2000);
});
setTimeout(() => console.log("pausing for issue to be created..."), 2000);

const newIssueNumber = await findIssueByTitle(issueTitle);

Expand Down
2 changes: 1 addition & 1 deletion .github/helpers/github-api/github-api-requests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export async function addComment(issueNumber, issueComment) {
const request = await octokit.rest.issues.createComment({
owner: GITHUB_OWNER,
repo: GITHUB_REPO,
issueNumber,
issue_number: issueNumber,
body: issueComment,
});
//console.log(request.data);
Expand Down

0 comments on commit a4fc1cf

Please sign in to comment.