Skip to content

Commit

Permalink
chore: debug status notice workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksteamdev committed Feb 4, 2025
1 parent 4832769 commit 73c4a57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/status-notice.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
*This is an automated message. Please do not reply to this comment.*`;
async function hasExistingNotice(params) {
console.log(Object.keys(github));
const comments = await github.issues.listComments(params);
console.log(Object.keys(github.rest));
const comments = await github.rest.issues.listComments(params);
console.log('Existing comments:', comments.data);
const botLogin = 'github-actions[bot]';
return comments.data.some(comment =>
Expand Down

0 comments on commit 73c4a57

Please sign in to comment.