Pickup issues that needs attention #1595
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: Pickup issues that needs attention | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: blackchoey/stale@releases/v1.2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue has no recent activities, please take a look and provide updates for it.' | |
stale-issue-label: 'need attention' | |
days-before-stale: 3 | |
last-updated-user-type: 'non-collaborator' | |
days-before-close: 999 | |
operations-per-run: 150 |