Skip to content

Commit 8358272

Browse files
authored
Merge pull request #3876 from w00000dy/main
Create new stale.yml
2 parents 00f5471 + 02405b4 commit 8358272

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/stale.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '0 12 * * *'
5+
workflow_dispatch:
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/stale@v9
12+
with:
13+
days-before-stale: 120
14+
days-before-close: 7
15+
exempt-issue-labels: 'pinned,keep,enhancement,confirmed'
16+
exempt-pr-labels: 'pinned,keep,enhancement,confirmed'
17+
stale-issue-message: >
18+
Hey! This issue has been open for quite some time without any new comments now.
19+
It will be closed automatically in a week if no further activity occurs.
20+
21+
Thank you for using WLED! ✨
22+
stale-pr-message: >
23+
Hey! This pull request has been open for quite some time without any new comments now.
24+
It will be closed automatically in a week if no further activity occurs.
25+
26+
Thank you for using WLED! ✨
27+
debug-only: true

0 commit comments

Comments
 (0)