Skip to content

Mark stale issues and pull requests #1313

Mark stale issues and pull requests

Mark stale issues and pull requests #1313

Workflow file for this run

name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: ':wave: Hi! This issue has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
stale-pr-message: ':wave: Hi! This pull request has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
stale-issue-label: 'stale'
exempt-issue-label: 'keep-open'
stale-pr-label: 'stale'
days-before-stale: 90
days-before-close: 30