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 004cac0 commit 23c5817Copy full SHA for 23c5817
.github/workflows/stale.yml
@@ -0,0 +1,15 @@
1
+name: 'Close stale issues and PRs'
2
+on:
3
+ schedule:
4
+ - cron: '30 1 * * *'
5
+
6
+jobs:
7
+ stale:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/stale@v9
11
+ with:
12
+ stale-issue-message: 'This issue has been inactive for 30 days. It is now marked as stale and will be closed in 5 days if no further activity occurs.'
13
+ stale-pr-message: 'This PR has been inactive for 30 days. It is now marked as stale and will be closed in 5 days if no further activity occurs.'
14
+ days-before-stale: 30
15
+ days-before-close: 5
0 commit comments