File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 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@v1
14+ with :
15+ repo-token : ${{ secrets.RELEASE_USER_TOKEN }}
16+ days-before-stale : 14
17+
18+ stale-issue-message : >
19+ There has not been any activity to this issue in the last 30 days.
20+ It will automatically be closed after 7 more days. Remove the `stale` label to prevent this.
21+ stale-issue-label : ' stale'
22+ exempt-issue-label : ' confirmed,help wanted'
23+
24+ stale-pr-message : >
25+ There has not been any activity to this pull request in the last 30 days.
26+ It will automatically be closed after 7 more days. Remove the `stale` label to prevent this.
27+ stale-pr-label : ' stale'
28+ exempt-pr-labels : ' awaiting-approval,work-in-progress'
You can’t perform that action at this time.
0 commit comments