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/stale-issues.yml
+28-2Lines changed: 28 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,34 @@ jobs:
24
24
- uses: actions/stale@v2.0.0
25
25
with:
26
26
repo-token: ${{ secrets.GITHUB_TOKEN }}
27
-
stale-issue-message: 'This issue is stale because it has been labeled as invalid, duplicate or wontfix. Remove stale label or comment or this will be closed in 2 days'
27
+
stale-issue-message: 'This issue is stale because it has been labeled as invalid.'
28
28
stale-issue-label: 'stale'
29
-
exempt-issue-labels: 'invalid,duplicate,wontfix'
29
+
only-labels: 'invalid'
30
+
days-before-stale: 1
31
+
days-before-close: 2
32
+
33
+
duplicate:
34
+
timeout-minutes: 1
35
+
runs-on: ubuntu-latest
36
+
steps:
37
+
- uses: actions/stale@v2.0.0
38
+
with:
39
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
40
+
stale-issue-message: 'This issue is stale because it has been labeled as duplicate.'
41
+
stale-issue-label: 'stale'
42
+
only-labels: 'duplicate'
43
+
days-before-stale: 1
44
+
days-before-close: 2
45
+
46
+
wontfix:
47
+
timeout-minutes: 1
48
+
runs-on: ubuntu-latest
49
+
steps:
50
+
- uses: actions/stale@v2.0.0
51
+
with:
52
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
53
+
stale-issue-message: 'This issue is stale because it has been labeled as wontfix.'
0 commit comments