2023-07-26 19:24:18 +02:00
|
|
|
name: Close stale issues
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '30 1 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
steps:
|
|
|
|
- uses: actions/stale@v8
|
|
|
|
with:
|
|
|
|
days-before-issue-stale: 60
|
|
|
|
days-before-issue-close: 7
|
|
|
|
stale-issue-label: 'stale'
|
|
|
|
stale-issue-message: 'This issue is stale because it has been open for 60 days with no activity.'
|
|
|
|
close-issue-message: 'This issue was closed because it has been inactive for 7 days since being marked as stale.'
|
|
|
|
days-before-pr-stale: -1
|
|
|
|
days-before-pr-close: -1
|
2023-08-16 19:52:01 +02:00
|
|
|
operations-per-run: 200
|
|
|
|
ascending: true
|
2023-07-26 19:24:18 +02:00
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2023-11-01 03:16:02 +01:00
|
|
|
exempt-issue-labels: bug,enhancement
|