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 2f67327 commit 9bc76d3Copy full SHA for 9bc76d3
.github/workflows/stale-bot.yml
@@ -1,8 +1,7 @@
1
name: "Close stale issues and PRs"
2
on:
3
- workflow_dispatch:
4
schedule:
5
- - cron: "18 04 * * *"
+ - cron: "18 04 * * 3"
6
7
permissions:
8
issues: write
@@ -13,10 +12,13 @@ jobs:
13
12
runs-on: ubuntu-latest
14
steps:
15
- name: Close Stale Issues
16
- uses: actions/stale@v8
+ uses: actions/stale@v9
17
with:
18
repo-token: ${{ secrets.GITHUB_TOKEN }}
19
- days-before-stale: 180
+
+ # DOCS https://github.com/actions/stale?tab=readme-ov-file#all-options
20
+ days-before-stale: 180 # ~6 months
21
+ days-before-close: 7
22
stale-issue-label: "Stale"
23
stale-issue-message: |
24
This issue has been automatically marked as stale.
0 commit comments