Skip to content

Mark stale issues and pull requests #1302

Mark stale issues and pull requests

Mark stale issues and pull requests #1302

Workflow file for this run

name: Mark stale issues and pull requests
on:
schedule:
- cron: "14 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue is stale since it has been open for 60 days with no activity. Please respond or this issue will be closed soon."
close-issue-message: "This stale issue has been closed now. Please reopen the issue if you are still having problems with the toolkit."
stale-pr-message: "This pr is stale since it has been open for 60 days with no activity. Please respond or this pr will be closed soon."
stale-issue-label: "closing soon if no response"
stale-pr-label: "no-pr-activity"
exempt-issue-labels: "feature-request,waiting: external dependency,investigating,in progress,enhancement"
days-before-stale: 60