Skip to content

Commit 8cadeb1

Browse files
authored
PMM-7: add stale action (#1072)
* add stale action * fix newline * add PR suggestions
1 parent 497ac65 commit 8cadeb1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/stale.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * MON-FRI' # 1:30 AM every weekday
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v9
11+
with:
12+
stale-issue-message: 'This issue has been marked as stale because it has been open for 120 days without activity. Please remove the stale label or add a comment; otherwise, it will be closed in 7 days.'
13+
days-before-stale: 120
14+
days-before-close: 7
15+
exempt-issue-labels: bug

0 commit comments

Comments
 (0)