Skip to content

Commit a26584a

Browse files
authored
Create needs-triage.yml
1 parent a180c3c commit a26584a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/needs-triage.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Add labels to older issues needing triage
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v4
11+
with:
12+
days-before-issue-stale: 180
13+
days-before-pr-stale: -1
14+
days-before-issue-close: -1
15+
days-before-pr-close: -1
16+
stale-issue-label: "stale"
17+
operations-per-run: 300
18+
stale-issue-message: "There hasn't been any activity on this issue for a while, so we're marking it as needs-triage, to prompt maintainers to look over it."
19+
stale-pr-message: "There hasn't been any activity on this PR for a while, so we're marking it as needs-triage, to prompt maintainers to look over it."

0 commit comments

Comments
 (0)