We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad02bef commit af282a4Copy full SHA for af282a4
.github/workflows/module-monitor.yml
@@ -369,6 +369,7 @@ jobs:
369
- name: Create or update comment
370
uses: actions/github-script@v7
371
with:
372
+ github-token: ${{ secrets.GITHUB_TOKEN }}
373
script: |
374
const { data: comments } = await github.rest.issues.listComments({
375
owner: context.repo.owner,
@@ -411,6 +412,9 @@ jobs:
411
412
console.log('Error:', error.message);
413
console.log('Comment body that would have been posted:');
414
console.log(commentBody);
415
+
416
+ // Don't fail the workflow - the PR detection worked correctly
417
+ console.log('Workflow completed successfully - PR detection and diff generation worked correctly.');
418
}
419
env:
420
diff_output: ${{ steps.set-output.outputs.diff_output }}
0 commit comments