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
31 changes: 31 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Close stale issues and PRs

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
stale:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 60
days-before-close: 7
stale-issue-message: >-
This issue has been automatically marked as stale because it has had no
recent activity. It will be closed in 7 days if no further activity occurs.
stale-pr-message: >-
This pull request has been automatically marked as stale because it has had no
recent activity. It will be closed in 7 days if no further activity occurs.
close-issue-message: >-
Closing this issue after a prolonged period of inactivity.
close-pr-message: >-
Closing this pull request after a prolonged period of inactivity.
exempt-issue-labels: pinned,security
exempt-pr-labels: pinned,security
operations-per-run: 200
Loading