We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0c20a commit 8656374Copy full SHA for 8656374
.github/stale.yml
.github/workflows/stale.yml
@@ -0,0 +1,23 @@
1
+workflow-dispatchname: Stale pull request handler
2
+on:
3
+ schedule:
4
+ - cron: 0 0 * * *
5
+
6
+permissions:
7
+ pull-requests: write
8
9
+jobs:
10
+ stale:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/stale@main
15
+ id: stale
16
+ with:
17
+ days-before-stale: -1
18
+ days-before-pr-stable: 28
19
+ days-before-pr-close: 14
20
+ stale-pr-label: stale
21
+ stale-pr-message: >-
22
+ This pull request is stale because it has been open for 4 weeks with no activity.
23
+ Remove stale label or comment or this will be closed in 2 weeks.
0 commit comments