87a92452ef143543a6ba7cee6d9d84a2211140b1 seems to be a mistake, rimraf should be removed #414
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: no_response | |
| on: | |
| schedule: | |
| - cron: '30 1 * * *' # Run every day at 01:30 | |
| workflow_dispatch: | |
| issue_comment: | |
| jobs: | |
| close: | |
| if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const script = require('./.github/scripts/close-unresponsive.cjs') | |
| await script({github, context}) | |
| remove_label: | |
| if: github.event_name == 'issue_comment' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const script = require('./.github/scripts/remove-response-label.cjs') | |
| await script({github, context}) |