Skip to content

Mark stale issues and pull requests #137

Mark stale issues and pull requests

Mark stale issues and pull requests #137

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: '27 23 * * *'
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 has seen no activity in 60 days and has been marked as stale. It will be closed automatically in 7 days if no further action is taken.'
stale-pr-message: 'This PR has seen no activity in 60 days and has been marked as stale. It will be closed automatically in 7 days if no further action is taken.'
stale-issue-label: 'stale-issue'
stale-pr-label: 'stale-pr'
days-before-stale: 60
exempt-all-assignees: true
exempt-all-milestones: true