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 bd9755d commit 910c7c5Copy full SHA for 910c7c5
.github/workflows/stale.yml
@@ -0,0 +1,23 @@
1
+name: 'Close stale issues and PRs'
2
+on:
3
+ schedule:
4
+ - cron: '30 1 * * *'
5
+ workflow_dispatch:
6
+
7
+permissions:
8
+ issues: write
9
+ pull-requests: write
10
11
+jobs:
12
+ stale:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/stale@v8
16
+ with:
17
+ stale-issue-message: 'This issue has been marked as stale. Please reply to the issue or the issue will be automatically closed in 3 days.'
18
+ close-issue-message: 'This issue has been closed as there has been no recent activity after being marked as stale.'
19
+ days-before-stale: 7
20
+ days-before-close: 3
21
+ days-before-pr-close: -1
22
+ stale-issue-label: 'Stale'
23
+ only-issue-labels: 'Awaiting Response'
0 commit comments