Close old issues that need reply #315
This file contains hidden or 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 old issues that need reply | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| close-old-issues: | |
| runs-on: ubuntu-latest | |
| # Keep this job capped at 10 minutes; never raise it unless explicitly asked. | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.x | |
| - name: Close old issues that need reply | |
| uses: imhoffd/needs-reply@v2.0.0 | |
| with: | |
| repo-token: ${{ secrets.BOT_TOKEN }} | |
| issue-label: 'needs reply' | |
| days-before-close: 7 | |
| close-message: | | |
| It looks like this issue didn't get the information it needed, so I'll close it for now. If I made a mistake, sorry! I am just a bot. | |
| Have a great day! | |
| Ionitron 💙 |