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 466837c commit 05e155aCopy full SHA for 05e155a
1 file changed
.github/workflows/on-issue.yml
@@ -3,6 +3,10 @@ on:
3
issues:
4
types: [opened, labeled]
5
6
+permissions:
7
+ contents: write # 允许提交和推送到仓库
8
+ issues: write # 允许创建评论和修改 issue
9
+
10
jobs:
11
run:
12
name: Run Bot
@@ -23,5 +27,7 @@ jobs:
23
27
run: bun run index.js
24
28
env:
25
29
REPO_TOKEN: ${{ secrets.REPO_TOKEN }}
30
+ GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
31
+ GITHUB_REPOSITORY: ${{ github.repository }}
26
32
MIDDLE_CA_KEY: ${{ secrets.MIDDLE_CA_KEY }}
33
MIDDLE_CA_CERT: ${{ secrets.MIDDLE_CA_CERT }}
0 commit comments