Add .github/workflows/stale.yml
ipfs-mgmt-read-write[bot] committed
Jun 13, 2022 at 12:49 UTC
910451a7da7b801476e9fbe83495cc6c1bed86ef
1 file changed
+26
.github/workflows/stale.yml
new
+26
@@ -0,0 +1,26 @@
1
+name: Close and mark stale issue
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * *'
6
+
7
+jobs:
8
+ stale:
9
+
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ issues: write
13
+ pull-requests: write
14
+
15
+ steps:
16
+ - uses: actions/stale@v3
17
+ with:
18
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
19
+ 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.'
20
+ close-issue-message: 'This issue was closed because it is missing author input.'
21
+ stale-issue-label: 'kind/stale'
22
+ any-of-labels: 'need/author-input'
23
+ exempt-issue-labels: 'need/triage,need/community-input,need/maintainer-input,need/maintainers-input,need/analysis'
24
+ days-before-issue-stale: 6
25
+ days-before-issue-close: 7
26
+ enable-statistics: true