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 75504ad commit a063270Copy full SHA for a063270
.github/workflows/command-block.yml
@@ -4,11 +4,18 @@ on:
4
paths:
5
- 'commands/docs/**'
6
7
+# Fix Resource not accessible by integration (updatePullRequest)
8
+permissions:
9
+ contents: write
10
+ pull-requests: write
11
+
12
jobs:
13
comment:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/github-script@v7.0.1
17
+ # If the docs was updated by hustcer, skip the commenting step
18
+ if: ${{!contains(github.event.pull_request.body, 'hustcer') }}
19
with:
20
script: |
21
github.rest.issues.createComment({
0 commit comments