2021-10-28 14:10:01 +00:00
|
|
|
name: Stale Check
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: 0 2 * * *
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
steps:
|
|
|
|
- name: Process Stale Issues
|
2022-03-07 14:17:48 +00:00
|
|
|
uses: actions/stale@v5
|
2021-10-28 14:10:01 +00:00
|
|
|
with:
|
2021-10-28 17:58:39 +00:00
|
|
|
stale-issue-label: status/stale
|
|
|
|
stale-pr-label: status/stale
|
2021-10-28 14:10:01 +00:00
|
|
|
stale-issue-message: >
|
|
|
|
This issue is stale because it has been open 30 days with no activity.
|
|
|
|
Please add a comment describing the reason to keep this issue open.
|
|
|
|
days-before-stale: 30
|
|
|
|
days-before-close: 5
|
2022-01-18 02:23:56 +00:00
|
|
|
exempt-issue-labels: 'enhancement,keep,status/needs triage,priority/high'
|
2021-10-28 14:10:01 +00:00
|
|
|
|