Skip to content

Mark Stale Issues/PRs #67

Mark Stale Issues/PRs

Mark Stale Issues/PRs #67

Workflow file for this run

name: Mark Stale Issues/PRs
on:
schedule:
- cron: "0 0 * * *"
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 14 days with no activity."
stale-pr-message: "This PR is stale because it has been open 14 days with no activity."
stale-issue-label: "stale-issue"
stale-pr-label: "stale"
days-before-stale: 14
days-before-close: 14