Skip to content

Mark stale issues and PRs #25

Mark stale issues and PRs

Mark stale issues and PRs #25

Workflow file for this run

name: Mark stale issues and PRs
on:
schedule:
- cron: "0 2 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
stale-pr-message: "This PR is stale because it has been open for 30 days with no activity."
days-before-stale: 30
days-before-close: 7