Skip to content

Stale Bot

Stale Bot #611

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: Stale Bot
on:
schedule:
- cron: '38 3 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been stale for 60 days. It will close in 7 days.'
stale-pr-message: 'This pull request has been stale for 60 days. It will close in 7 days.'
days-before-stale: 60
days-before-close: 7
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'upstream, never-stale'
exempt-pr-labels: 'upstream, never-stale'