1
0
mirror of https://github.com/ipfs/ipfs synced 2024-09-17 21:31:33 +02:00

Add .github/workflows/stale.yml

This commit is contained in:
ipfs-mgmt-read-write[bot] 2022-06-13 12:52:10 +00:00 committed by GitHub
parent b847dc329d
commit ef11b6f915
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,26 @@
name: Close and mark stale issue
on:
schedule:
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Oops, seems like we needed more information for this issue, please comment with more details or this issue will be closed in 7 days.'
close-issue-message: 'This issue was closed because it is missing author input.'
stale-issue-label: 'kind/stale'
any-of-labels: 'need/author-input'
exempt-issue-labels: 'need/triage,need/community-input,need/maintainer-input,need/maintainers-input,need/analysis'
days-before-issue-stale: 6
days-before-issue-close: 7
enable-statistics: true