Skip to content

Mark stale pull requests #243

Mark stale pull requests

Mark stale pull requests #243

Workflow file for this run

name: Mark stale pull requests
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-20.04
steps:
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: "This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 14 days"
days-before-pr-stale: 30
days-before-pr-close: 14
stale-issue-message: "This issue is stale because it has been open for 270 days with no activity. Remove stale label or comment or this will be closed in 14 days"
days-before-issue-stale: 270
days-before-issue-close: 14
operations-per-run: 60