2020-02-28 17:35:29 +00:00
|
|
|
name: "Close stale issues"
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
2020-10-12 17:26:22 +00:00
|
|
|
name: Stale
|
2020-02-28 17:35:29 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-08-28 18:56:20 +00:00
|
|
|
- uses: actions/stale@v3
|
2020-02-28 17:35:29 +00:00
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2021-01-15 05:19:25 +00:00
|
|
|
stale-issue-message: 'Issue is stale and will be closed in 14 days unless there is new activity'
|
|
|
|
stale-pr-message: 'PR is stale and will be closed in 14 days unless there is new activity'
|
2021-01-18 18:41:49 +00:00
|
|
|
stale-issue-label: 'stale'
|
|
|
|
exempt-issue-labels: 'stale-exempt'
|
|
|
|
stale-pr-label: 'stale'
|
|
|
|
exempt-pr-labels: 'stale-exempt'
|
2020-11-08 16:23:53 +00:00
|
|
|
remove-stale-when-updated: 'True'
|
2020-11-08 16:31:19 +00:00
|
|
|
operations-per-run: 500
|
2021-01-15 05:19:25 +00:00
|
|
|
days-before-stale: 30
|
|
|
|
days-before-close: 14
|