Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Close stale issues and PRs"
on:
schedule:
- cron: "30 1 * * *"

permissions:
actions: write
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
Comment thread
Xuanwo marked this conversation as resolved.
with:
close-pr-message: "Thank you for your contribution. This PR has been inactive for a while, so we’re closing it to free up bandwidth. Feel free to reopen it if you still find it useful."
days-before-pr-close: 90
Comment thread Fixed
Loading