Issue Manager #1461
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 Manager | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| issue_comment: | |
| types: | |
| - created | |
| issues: | |
| types: | |
| - labeled | |
| pull_request_target: | |
| types: | |
| - labeled | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| issue-manager: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: tiangolo/issue-manager@0.8.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| config: > | |
| { | |
| "answered": { | |
| "delay": 604800, | |
| "message": "It seems the issue was answered, closing this now." | |
| }, | |
| "waiting": { | |
| "delay": 604800, | |
| "message": "Closing after 7 days of waiting for the additional info requested." | |
| } | |
| } |