close needs-information issues #34
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: close needs-information issues | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
workflow_dispatch: | |
jobs: | |
close-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
debug-only: false | |
days-before-issue-stale: 14 | |
days-before-issue-close: 7 | |
only-labels: "status: needs information" | |
stale-issue-label: "stale" | |
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity." | |
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale." | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 |