no-response.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. name: No Response
  2. # Modified from: https://raw.githubusercontent.com/github/docs/main/.github/workflows/no-response.yaml
  3. # **What it does**: Closes issues that don't have enough information to be
  4. # actionable.
  5. # **Why we have it**: To remove the need for maintainers to remember to check
  6. # back on issues periodically to see if contributors have
  7. # responded.
  8. # **Who does it impact**: Everyone that works on docs or docs-internal.
  9. on:
  10. issue_comment:
  11. types: [created]
  12. schedule:
  13. # Schedule for five minutes after the hour every hour
  14. - cron: '5 * * * *'
  15. jobs:
  16. noResponse:
  17. runs-on: ubuntu-latest
  18. steps:
  19. - uses: lee-dohm/no-response@v0.5.0
  20. with:
  21. token: ${{ github.token }}
  22. closeComment: >
  23. This issue has been automatically closed because there has been no response
  24. to our request for more information from the original author. With only the
  25. information that is currently in the issue, we don't have enough information
  26. to take action. Please reach out if you have or find the answers we need so
  27. that we can investigate further.
  28. If you still have questions, please improve your description and re-open it.
  29. Thanks :-)