Issue Close Require #762
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: Issue Close Require | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| permissions: | |
| contents: read | |
| jobs: | |
| issue-close-require: | |
| permissions: | |
| issues: write | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'web-infra-dev' | |
| steps: | |
| - name: need reproduce | |
| uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3 | |
| with: | |
| actions: "close-issues" | |
| labels: "need reproduction" | |
| inactive-day: 14 | |
| body: | | |
| Since the issue was labeled with `need reproduction`, but no response in 14 days. This issue will be closed. Feel free to comment and reopen it if you have any further questions. | |
| - name: need more info | |
| uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3 | |
| with: | |
| actions: "close-issues" | |
| labels: "need more info" | |
| inactive-day: 14 | |
| body: | | |
| Since the issue was labeled with `need more info`, but no response in 14 days. This issue will be closed. Feel free to comment and reopen it if you have any further questions. | |
| - name: awaiting feedback | |
| uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3 | |
| with: | |
| actions: "close-issues" | |
| labels: "awaiting more feedback" | |
| inactive-day: 14 | |
| body: | | |
| Since the issue was labeled with `awaiting more feedback`, but no response in 14 days. This issue will be closed. Feel free to comment and reopen it if you have any further questions. |