We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adbaa62 commit 1c44b31Copy full SHA for 1c44b31
.github/workflows/reconcile-issue-comment.yaml
@@ -91,6 +91,7 @@ jobs:
91
});
92
console.log(`Commenter ${commenterLogin} is a collaborator.`);
93
} catch (error) {
94
+ console.log(error);
95
console.log(`Commenter ${commenterLogin} is not a collaborator.`);
96
await github.rest.issues.createComment({
97
issue_number: context.issue.number,
.github/workflows/reconcile-issue.yaml
@@ -27,9 +27,8 @@ jobs:
27
28
- name: Handle labels
29
uses: actions/github-script@v7
30
- env:
31
- GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }}
32
with:
+ github-token: ${{ steps.get_workflow_token.outputs.token }}
33
script: |
34
// begin helper function for adding comments
35
async function ensureComment(body, shouldExist) {
0 commit comments