2021-12-22 13:07:36 -05:00
|
|
|
---
|
|
|
|
name: Close Stale Issues
|
|
|
|
on: # yamllint disable-line rule:truthy
|
2021-11-02 10:52:38 -04:00
|
|
|
schedule:
|
2021-12-22 13:07:36 -05:00
|
|
|
- cron: "30 1 * * *" # Daily
|
2021-11-02 10:52:38 -04:00
|
|
|
jobs:
|
2021-12-22 13:07:36 -05:00
|
|
|
Stale:
|
2021-11-02 10:52:38 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/stale@v4
|
|
|
|
with:
|
2021-12-22 13:07:36 -05:00
|
|
|
close-issue-message: >-
|
|
|
|
This issue was closed because it has been stalled for 5 days with
|
|
|
|
no activity.
|
2021-11-02 10:52:38 -04:00
|
|
|
days-before-close: 7
|
2021-12-22 13:07:36 -05:00
|
|
|
days-before-stale: 60
|
|
|
|
stale-issue-message: >-
|
|
|
|
This issue is stale because it has been open 60 days with no
|
|
|
|
activity. Remove stale label or comment or this will be closed in 7
|
|
|
|
days.
|