Issue Manager #253
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: | |
| push: | |
| branches: | |
| - temp_test_manager | |
| schedule: | |
| - cron: "0 8 * * *" | |
| issues: | |
| types: | |
| - labeled | |
| permissions: | |
| issues: write | |
| jobs: | |
| issue-manager: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: tiangolo/[email protected] | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| config: > | |
| { | |
| "completed": { | |
| "delay": "P14DT0H0M0S", | |
| "message": "The issue was completed 14 days ago and no more new comments posted recently. Closing it now.", | |
| "remove_label_on_comment": false, | |
| "remove_label_on_close": false | |
| } | |
| } |