Cull Stale Issues #801
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: Cull Stale Issues | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v4 | |
with: | |
only-issue-labels: "needs-information" | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
# -1 here means that PRs will never be marked as stale | |
days-before-pr-stale: -1 |