Mark stale issues and pull requests #1462
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |