Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
26 lines
815 B
YAML
26 lines
815 B
YAML
name: 'Close stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
stale-issue-message: |
|
|
Hey there!
|
|
|
|
This issue was inactive for a long time and will be automatically closed in 30 days if there isn't any further activity. We therefore assume that the user has lost interest or resolved the problem on their own.
|
|
|
|
Don't worry though; if this is an error, let us know with a comment and we'll be happy to reopen the issue.
|
|
|
|
Thanks!
|
|
stale-issue-label: 'stale'
|
|
exempt-issue-labels: 'enhancement'
|
|
days-before-stale: 180
|
|
days-before-close: 30
|
|
days-before-pr-stale: -1
|
|
operations-per-run: 1000
|