Added: Stale GitHub Action

This commit is contained in:
GoliathLabs 2021-11-26 16:01:47 +01:00
parent e153ba6bd7
commit ec050f82ab
No known key found for this signature in database
GPG Key ID: 37F7BDC266B5BAB8

15
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
days-before-stale: 30
days-before-close: 5