Skip to content

Mark stale issues and pull requests #42928

Mark stale issues and pull requests

Mark stale issues and pull requests #42928

Workflow file for this run

name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 * * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Labeling this issue as stale. There has been no activity for 30 days. Remove stale label or comment or this issue will be closed in 7 days.'
stale-pr-message: 'Labeling this pull request as stale. There has been no activity for 30 days. Remove stale label or comment or this PR will be closed in 7 days.'
stale-issue-label: 'no-activity'
stale-pr-label: 'no-activity'
days-before-stale: 90
days-before-close: 7