mirror of https://github.com/etcd-io/bbolt.git
Merge pull request #722 from cenkalti/stalebot
Add workflow to close stale issues and PRspull/724/head
commit
37ff3504e3
|
@ -0,0 +1,19 @@
|
|||
name: 'Close stale issues and PRs'
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *' # every day at 00:00 UTC
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v9
|
||||
with:
|
||||
days-before-stale: 90
|
||||
days-before-close: 21
|
||||
stale-issue-label: stale
|
||||
stale-pr-label: stale
|
Loading…
Reference in New Issue