no-response.yml 1.3 KB

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