We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7665cf1 commit e2bc0a0Copy full SHA for e2bc0a0
.github/workflows/debug-comment-action.yml
@@ -5,8 +5,12 @@ on:
5
types: [created]
6
7
jobs:
8
- run-command-and-comment:
+ run-command-from-comment:
9
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/debug-action') }}
10
+ permissions: # https://docs.github.com/en/rest/issues/comments?apiVersion=2022-11-28#create-an-issue-comment
11
+ contents: 'read'
12
+ issues: 'write'
13
+ pull-requests: 'write'
14
runs-on: ubuntu-latest
15
steps:
16
# Ensure we are making checks using the context in main branch to be safe
0 commit comments