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/close-stale-issues.yml
+8-4
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,21 @@
1
1
name: Close stale issues
2
2
on:
3
+
workflow_dispatch:
3
4
schedule:
4
5
- cron: '30 8 * * mon'
5
6
7
+
permission:
8
+
issues: write
9
+
6
10
jobs:
7
11
stale:
8
12
runs-on: ubuntu-latest
9
13
steps:
10
-
- uses: actions/stale@v3
14
+
- uses: actions/stale@v4
11
15
with:
12
-
stale-issue-message: 'This issue has been marked as stale because it has been open 14 days with no activity. Remove **status: stale** label or comment, otherwise it will be closed in 7 days '
13
-
close-issue-label: 'status: stale'
14
-
close-issue-message: 'This issue has been closed becasue has been stale for 7 days. If you think this issue deserves some attention feel free to reopen it'
16
+
stale-issue-message: 'This issue has been marked as stale because it has been open for more than 14 days with no activity. Remove stale label or comment, otherwise it will be closed in 7 days '
17
+
stale-issue-label: 'status: stale'
18
+
close-issue-message: 'This issue has been closed becasue has been stale for more than 7 days. If you think this issue deserves some attention feel free to reopen it'
0 commit comments