Skip to content

Mark stale issues and pull requests #73

Mark stale issues and pull requests

Mark stale issues and pull requests #73

Workflow file for this run

# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests
on:
schedule:
- cron: '0 0 * * *' # Run daily at midnight UTC
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Issue configuration
days-before-issue-stale: 60
days-before-issue-close: 14
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.
Thank you for your contributions!
close-issue-message: >
This issue was closed because it has been inactive for 14 days since being marked as stale.
Feel free to reopen if this is still relevant.
stale-issue-label: 'stale'
exempt-issue-labels: 'pinned,security,bug,enhancement'
# Pull request configuration
days-before-pr-stale: 60
days-before-pr-close: 14
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.
Thank you for your contributions!
close-pr-message: >
This pull request was closed because it has been inactive for 14 days since being marked as stale.
Feel free to reopen if this is still relevant.
stale-pr-label: 'stale'
exempt-pr-labels: 'pinned,security,work-in-progress'
# General configuration
remove-stale-when-updated: true
operations-per-run: 100