Skip to content

Stale Issues and PRs #20

Stale Issues and PRs

Stale Issues and PRs #20

Workflow file for this run

name: Stale Issues and PRs
on:
schedule:
# Run daily at midnight UTC
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
name: Mark Stale Issues and PRs
runs-on: ubuntu-latest
steps:
- name: Mark stale issues and PRs
uses: actions/stale@v10
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 14 days if no further activity occurs.
If this issue is still relevant, please comment to keep it open.
stale-issue-label: 'stale'
days-before-issue-stale: 60
days-before-issue-close: 14
exempt-issue-labels: 'pinned,security,bug,in-progress'
# 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.
Please update the PR or comment if you're still working on this.
stale-pr-label: 'stale'
days-before-pr-stale: 30
days-before-pr-close: 14
exempt-pr-labels: 'pinned,security,work-in-progress'
# General settings
operations-per-run: 100
remove-stale-when-updated: true
delete-branch: false