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+ # This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2+ #
3+ # You can adjust the behavior by modifying this file.
4+ # For more information, see:
5+ # https://github.com/actions/stale
6+ name : Mark stale issues and pull requests
7+
8+ on :
9+ schedule :
10+ - cron : " 0 4 * * *"
11+ workflow_dispatch :
12+
13+ jobs :
14+ stale :
15+ runs-on : ubuntu-latest
16+ permissions :
17+ issues : write
18+ pull-requests : write
19+
20+ steps :
21+ - uses : actions/stale@v5
22+ with :
23+ repo-token : ${{ secrets.GITHUB_TOKEN }}
24+ stale-issue-message : " This issue has been quiet for a while. Nudging the assigned person."
25+ stale-pr-message : " This PR has been quiet for a while. Nudging the assignee and reviewers."
26+ stale-issue-label : " stale:needs-attention"
27+ stale-pr-label : " stale:needs-attention"
28+ days-before-stale : 0
You can’t perform that action at this time.
0 commit comments