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 1cfc3a5 commit 48d926aCopy full SHA for 48d926a
1 file changed
.github/workflows/stale-issues.yml
@@ -0,0 +1,32 @@
1
+name: 'Close Stale Issues'
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * *'
6
+ workflow_dispatch:
7
8
+jobs:
9
+ stale:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ issues: write
13
14
+ steps:
15
+ - uses: actions/stale@v9
16
+ with:
17
+ # Message to comment on stale issues
18
+ stale-issue-message: >
19
+ This issue has been automatically marked as stale due to 14 days of inactivity
20
+ and will now be closed.
21
22
+ # Mark issues as stale after 14 days
23
+ days-before-issue-stale: 14
24
25
+ # Close issues immediately after marking as stale
26
+ days-before-issue-close: 0
27
28
+ # Label to apply when marking issues as stale
29
+ stale-issue-label: 'stale'
30
31
+ # Remove stale label if an update is made
32
+ remove-stale-when-updated: true
0 commit comments