Skip to content

Commit faf557a

Browse files
authored
Create stale.yml
1 parent efb90fb commit faf557a

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/stale.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Mark stale issues and pull requests
2+
3+
on:
4+
schedule:
5+
- cron: "30 1 * * *"
6+
7+
jobs:
8+
stale:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/stale@v3
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
17+
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
18+
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
19+
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'
20+
days-before-issue-stale: 30
21+
days-before-pr-stale: 45
22+
days-before-issue-close: 5
23+
days-before-pr-close: 10
24+
stale-issue-label: 'no-issue-activity'
25+
exempt-issue-labels: 'Bug, Enhancements, Investigating, in progress, Documentation Update Required'
26+
stale-pr-label: 'no-pr-activity'
27+
exempt-pr-labels: 'IN REVIEW, Reviewing, Draft, in progress, 3.x, 2.5.0'
28+
only-labels: "More Information Required, Not an Issue, question, Won't Do"
29+

0 commit comments

Comments
 (0)