You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/issue-labeled.yml
+8-3
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,11 @@ on:
6
6
# pull_request:
7
7
# types: [labeled]
8
8
9
+
permissions:
10
+
issues: write
11
+
pull-requests: write
12
+
contents: write
13
+
9
14
jobs:
10
15
reply-labeled:
11
16
runs-on: ubuntu-latest
@@ -15,7 +20,7 @@ jobs:
15
20
uses: actions-cool/issues-helper@v3
16
21
with:
17
22
actions: "remove-labels"
18
-
token: ${{ secrets.ACCESS_TOKEN }}
23
+
token: ${{ secrets.GITHUB_TOKEN }}
19
24
issue-number: ${{ github.event.issue.number }}
20
25
labels: "enhancement: pending triage"
21
26
@@ -24,7 +29,7 @@ jobs:
24
29
uses: actions-cool/issues-helper@v3
25
30
with:
26
31
actions: "remove-labels"
27
-
token: ${{ secrets.ACCESS_TOKEN }}
32
+
token: ${{ secrets.GITHUB_TOKEN }}
28
33
issue-number: ${{ github.event.issue.number }}
29
34
labels: "bug: pending triage"
30
35
@@ -33,7 +38,7 @@ jobs:
33
38
uses: actions-cool/issues-helper@v3
34
39
with:
35
40
actions: "create-comment, remove-labels"
36
-
token: ${{ secrets.ACCESS_TOKEN }}
41
+
token: ${{ secrets.GITHUB_TOKEN }}
37
42
issue-number: ${{ github.event.issue.number }}
38
43
body: |
39
44
Hello @${{ github.event.issue.user.login }}. Please provide the complete reproduction steps and code. Issues labeled by `needs reproduction` will be closed if no activities in 3 days.
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ jobs:
10
10
steps:
11
11
- uses: actions/stale@v9
12
12
with:
13
-
repo-token: ${{ secrets.ACCESS_TOKEN }}
13
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
14
14
stale-issue-message: "This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days"
15
15
stale-pr-message: "This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days"
0 commit comments