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 21836d6 commit 5d8842aCopy full SHA for 5d8842a
.github/workflows/stale.yml
@@ -0,0 +1,18 @@
1
+name: Close Stale Issues
2
+on:
3
+ schedule:
4
+ - cron: '30 8 * * *'
5
+
6
+jobs:
7
+ stale:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/stale@v9
11
+ with:
12
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
13
+ stale-issue-message: 'This issue has been automatically marked as stale due to inactivity and will be closed in 7 days if no further activity occurs.'
14
+ close-issue-message: 'This issue was closed due to inactivity. Please reopen if you still encounter this problem or have more information to add.'
15
+ days-before-stale: 14
16
+ days-before-close: 7
17
+ stale-issue-label: 'stale'
18
+ exempt-issue-labels: 'do not stale'
0 commit comments