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.
2 parents 310a8ef + e24852c commit a84e752Copy full SHA for a84e752
.github/workflows/stale.yml
@@ -0,0 +1,23 @@
1
+# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2
+#
3
+# You can adjust the behavior by modifying this file.
4
+# For more information, see:
5
+# https://github.com/actions/stale
6
+name: Mark stale issues and pull requests
7
+
8
+on:
9
+ schedule:
10
+ - cron: '27 20 * * *'
11
12
+jobs:
13
+ stale:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/stale@v4
17
+ with:
18
+ days-before-stale: 30
19
+ days-before-close: 7
20
+ stale-issue-message: 'This issue has been marked as stale due to lack of recent activity. It will be closed if no further activity occurs.'
21
+ stale-pr-message: ''
22
+ stale-issue-label: 'stale'
23
+ stale-pr-label: 'stale'
0 commit comments