🥺 No Response #2120
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
# Literally copy from https://github.com/remix-run/remix/blob/889893e9482dcd3edc936e88204a6c3314c45c78/.github/workflows/no-response.yml | |
# Thank you, remix-run/remix | |
name: 🥺 No Response | |
on: | |
issue_comment: | |
types: [created] | |
schedule: | |
# Schedule for five minutes after the hour, every hour | |
- cron: '5 5 * * *' | |
jobs: | |
noResponse: | |
if: github.repository == 'nvh95/jest-preview' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🥺 Handle Ghosting | |
uses: lee-dohm/[email protected] | |
with: | |
closeComment: > | |
This issue has been automatically closed because we haven't received a | |
response from the original author 🙈. This automation helps keep the issue | |
tracker clean from issues that are unactionable. Please reach out if you | |
have more information for us! 💪 | |
daysUntilClose: 10 | |
responseRequiredLabel: needs-response | |
token: ${{ github.token }} |