Skip to content

Close inactive issues and PRs #104

Close inactive issues and PRs

Close inactive issues and PRs #104

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 inactive issues and PRs
on:
schedule:
- cron: '37 21 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has had no new activity in the last few weeks. As a result this issue is now considered stale unless new activity is added.'
stale-pr-message: 'This PR has had no new activity in the last few weeks. As a result this PR is now considered stale unless new activity is added.'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
days-before-close: 60