Skip to content

Close stale issues and PRs #222

Close stale issues and PRs

Close stale issues and PRs #222

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: Close stale issues and PRs
on:
schedule:
- cron: '30 19 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v7
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has now been marked as stale and will be closed if no further activity occurs.'
stale-pr-message: 'This PR has now been marked as stale and will be closed if no further activity occurs.'
exempt-issue-labels: 'enhancement'
days-before-stale: 30