Skip to content

Mark stale issues and pull requests #1331

Mark stale issues and pull requests

Mark stale issues and pull requests #1331

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@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-close: -1
exempt-issue-labels: good first issue,help wanted,on-deck
stale-issue-message: "This issue hasn't had any recent activity lately and is being marked as stale automatically."
stale-pr-message: "This PR hasn't had any recent activity lately and is being marked as stale automatically."
stale-issue-label: 'stale'
stale-pr-label: 'stale'