2021-08-29 10:37:08 +00:00
|
|
|
name: Mark and close stale support issues
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '32 1 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
steps:
|
2022-03-15 09:21:11 +00:00
|
|
|
- uses: actions/stale@v5
|
2021-08-29 10:37:08 +00:00
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
days-before-stale: 180
|
|
|
|
days-before-close: 15
|
|
|
|
stale-issue-message: 'This issue has been automatically marked Stale and will be closed in 15 days if no further activity happens.'
|
|
|
|
stale-issue-label: 'Stale'
|
2022-07-30 12:19:06 +00:00
|
|
|
close-issue-reason: 'not_planned'
|
2021-08-29 10:37:08 +00:00
|
|
|
only-labels: 'Support'
|
|
|
|
exempt-all-milestones: true
|
|
|
|
ascending: true
|