Skip to content

Close stale issues and PRs #483

Close stale issues and PRs

Close stale issues and PRs #483

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: '0 12 * * *'
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
days-before-issue-stale: 14
# days-before-issue-close: 7
days-before-issue-close: -1
days-before-pr-stale: 14
days-before-pr-close: -1
stale-issue-label: 'no-issue-activity'
exempt-issue-labels: 'no-issue-activity,wontfix'
stale-pr-label: 'no-pr-activity'
exempt-pr-labels: 'no-pr-activity,wontfix'
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity."
# close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
stale-pr-message: 'This pull request is stale because there is no activity for 14 days'
repo-token: ${{ secrets.GITHUB_TOKEN }}