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
# This workflow closes issues that have been labeled as 'waiting for response' and had no activity for 30 days.
2
+
#
3
+
# You can adjust the behavior by modifying this file.
4
+
# For more information, see:
5
+
# https://github.com/actions/stale
6
+
name: Close stale 'waiting for response' issues
7
+
8
+
on:
9
+
schedule:
10
+
# ┌───────────── minute (0 - 59)
11
+
# │ ┌───────────── hour (0 - 23)
12
+
# │ │ ┌───────────── day of the month (1 - 31)
13
+
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
14
+
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
15
+
# │ │ │ │ │
16
+
# │ │ │ │ │
17
+
# │ │ │ │ │
18
+
# * * * * *
19
+
- cron: "0 0 * * *"
20
+
21
+
jobs:
22
+
stale:
23
+
runs-on: ubuntu-latest
24
+
permissions:
25
+
issues: write
26
+
27
+
steps:
28
+
- uses: actions/stale@v5
29
+
with:
30
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
31
+
days-before-issue-stale: 30
32
+
days-before-issue-close: 0
33
+
close-issue-message: "This issue was closed because it has been stalled for 30 days with no activity. If the issue still persists, please reopen with the information requested. Thanks."
0 commit comments