We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9204821 commit 4110510Copy full SHA for 4110510
.github/workflows/stale.yml
@@ -0,0 +1,19 @@
1
+name: 'Close stale issues'
2
+on:
3
+ schedule:
4
+ - cron: '0 14 * * *'
5
+
6
+permissions:
7
+ issues: write
8
9
+jobs:
10
+ stale:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/stale@v9
14
+ with:
15
+ stale-issue-message: 'This issue is stale, and will be closed in 3 days if no reply is received.'
16
+ close-issue-message: 'Closing this issue as it has been inactive for 10 days.'
17
+ any-of-labels: 'question,more info'
18
+ days-before-stale: 7
19
+ days-before-close: 3
0 commit comments