We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c82f33e commit e1c19faCopy full SHA for e1c19fa
1 file changed
.github/workflows/stale.yml
@@ -0,0 +1,23 @@
1
+name: Stale
2
+
3
+on:
4
+ schedule:
5
+ - cron: "0 6 * * 1"
6
+ workflow_dispatch:
7
8
+permissions:
9
+ issues: write
10
+ pull-requests: write
11
12
+jobs:
13
+ stale:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/stale@v9
17
+ with:
18
+ stale-issue-message: "This issue has been automatically marked as stale due to inactivity. It will be closed in 7 days if no further activity occurs."
19
+ stale-pr-message: "This PR has been automatically marked as stale due to inactivity. It will be closed in 7 days if no further activity occurs."
20
+ days-before-stale: 30
21
+ days-before-close: 7
22
+ stale-issue-label: stale
23
+ stale-pr-label: stale
0 commit comments