Skip to content

.github/workflows/stale.yml #427

.github/workflows/stale.yml

.github/workflows/stale.yml #427

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: '21 22 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open for 60 days with no activity. Remove stale label or comment to re-open.'
stale-pr-message: 'This pull request is stale because it has been open for 60 days with no activity. Remove stale label or comment to re-open.'
stale-issue-label: 'stale-issue'
stale-pr-label: 'stale-pr'