Skip to content

Mark Stale Issues and PRs #28

Mark Stale Issues and PRs

Mark Stale Issues and PRs #28

Workflow file for this run

name: Mark Stale Issues and PRs
on:
schedule:
- cron: '0 0 * * *' # Run daily at midnight
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
name: Mark Stale
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Issue settings
stale-issue-message: |
πŸ‘‹ This issue has been automatically marked as stale because it has not had recent activity.
It will be closed in 7 days if no further activity occurs.
If this issue is still relevant, please:
- Add a comment to keep it open
- Add the `keep-open` label
- Provide additional context or updates
Thank you for your contributions! πŸ™
close-issue-message: |
πŸ”’ This issue has been automatically closed due to inactivity.
If you believe this issue is still relevant, please:
- Reopen the issue
- Provide updated information
- Reference this issue in a new PR
Thank you! πŸ™
days-before-issue-stale: 60
days-before-issue-close: 7
stale-issue-label: 'stale'
exempt-issue-labels: 'keep-open,bug,security,hacktoberfest'
# PR settings
stale-pr-message: |
πŸ‘‹ This pull request has been automatically marked as stale because it has not had recent activity.
It will be closed in 14 days if no further activity occurs.
If this PR is still relevant, please:
- Rebase on the latest main branch
- Address any review comments
- Add a comment explaining the status
- Add the `keep-open` label
Thank you for your contribution! πŸ™
close-pr-message: |
πŸ”’ This pull request has been automatically closed due to inactivity.
If you'd like to continue this work:
- Reopen the PR
- Create a new PR with updated changes
- Reference this PR in your new submission
Thank you! πŸ™
days-before-pr-stale: 30
days-before-pr-close: 14
stale-pr-label: 'stale'
exempt-pr-labels: 'keep-open,in-progress,hacktoberfest-accepted'
# General settings
operations-per-run: 100
remove-stale-when-updated: true
ascending: true