Skip to content

Commit 900c782

Browse files
authored
Close stale PRs after 180 days (#4698)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
1 parent 810f714 commit 900c782

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/triage-stale.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Close stale PRs
2+
on:
3+
workflow_dispatch: {}
4+
schedule:
5+
- cron: "30 1 * * *"
6+
permissions: {}
7+
jobs:
8+
close:
9+
runs-on: ubuntu-24.04
10+
permissions:
11+
actions: write
12+
issues: write
13+
steps:
14+
- uses: actions/stale@v9
15+
with:
16+
operations-per-run: 100
17+
days-before-pr-stale: 180
18+
days-before-pr-close: 0
19+
close-pr-message: "This PR has been automatically closed because it has been stale for 180 days. If you wish to continue working on this PR, please ping a maintainer to reopen it."

0 commit comments

Comments
 (0)