Skip to content
Draft
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
28 changes: 28 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Mark stale issues and pull requests"
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:

jobs:
stale:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-slim
steps:
- uses: actions/stale@v9
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
days-before-stale: 180
days-before-close: -1
stale-issue-label: "stale"
stale-pr-label: "stale"
stale-issue-message: >
This issue has been automatically marked as stale because it has not
had recent activity in the last 6 months. It will not be closed
automatically. Thank you for your contributions.
stale-pr-message: >
This pull request has been automatically marked as stale because it
has not had recent activity in the last 6 months. It will not be
closed automatically. Thank you for your contributions.
Loading