File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Close inactive issues
2+
3+ on :
4+ schedule :
5+ - cron : " 17 3 * * *"
6+ workflow_dispatch :
7+
8+ permissions :
9+ contents : read
10+ issues : write
11+ pull-requests : read
12+
13+ jobs :
14+ close-inactive-issues :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/stale@v10
18+ with :
19+ repo-token : ${{ github.token }}
20+ days-before-issue-stale : 23
21+ days-before-issue-close : 7
22+ stale-issue-label : stale
23+ stale-issue-message : >
24+ This issue has had no activity for 23 days. It will be
25+ automatically closed in 7 days unless there is new activity.
26+ close-issue-message : >
27+ This issue was automatically closed after 30 days without
28+ activity. If the problem still exists, please reopen it or
29+ create a new issue with updated information.
30+ close-issue-reason : not_planned
31+ exempt-issue-labels : pinned,security,confirmed-bug
32+ days-before-pr-stale : -1
33+ days-before-pr-close : -1
You can’t perform that action at this time.
0 commit comments