Skip to content

stale

stale #1100

Workflow file for this run

---
# GitHub Actions workflow for managing stale issues and pull requests
# Automatically labels and closes issues/PRs that have been inactive for specified periods
name: stale
on:
workflow_dispatch:
schedule:
- cron: 9 9 * * *
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
with:
# keep-sorted start
close-issue-message: |
This issue has been automatically closed because it has been stale for 7 days with no activity.
If this issue is still relevant, please reopen it or create a new issue with updated information.
close-pr-message: |
This pull request has been automatically closed because it has been stale for 14 days with no activity.
If this pull request is still relevant, please reopen it or rebase and push new commits.
stale-issue-label: stale
stale-issue-message: |
This issue is stale because it has been open for 60 days with no activity.
Please:
- Add a comment if this issue is still relevant
- Remove the stale label if you're actively working on it
- Close the issue if it's no longer needed
This issue will be automatically closed in 7 days if no further activity occurs.
stale-pr-label: stale
stale-pr-message: |
This pull request is stale because it has been open for 30 days with no activity.
Please:
- Add a comment if this PR is still relevant
- Push new commits if you're actively working on it
- Remove the stale label if you need more time
- Close the PR if it's no longer needed
This pull request will be automatically closed in 14 days if no further activity occurs.
# keep-sorted end