Stale issues
This commit is contained in:
parent
bd0412b19b
commit
d6db99208a
1 changed files with 18 additions and 0 deletions
18
.github/workflows/stale-issues.yml
vendored
Normal file
18
.github/workflows/stale-issues.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: 'Close stale issues and PRs'
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 1 * * *'
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
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 7 days.'
|
||||
days-before-stale: 30
|
||||
days-before-close: 7
|
Loading…
Add table
Add a link
Reference in a new issue