Check if 'Waiting for response' issue is stale #418
This file contains 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: Check if 'Waiting for response' issue is stale | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
issue_comment: | |
types: | |
- created | |
workflow_dispatch: | |
jobs: | |
issue-manager: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: tiangolo/issue-manager@0.4.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config: '{"Waiting for response": {"delay": "P30DT0H0M0S", "message": "Closing because it has been 30 days with no additional information."}}' |