You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 line
944 B

  1. name: No Response
  2. # Both `issue_comment` and `scheduled` event types are required for this Action
  3. # to work properly.
  4. on:
  5. issue_comment:
  6. types: [created]
  7. schedule:
  8. # Schedule for ten minutes after the hour, every hour
  9. - cron: '10 * * * *'
  10. jobs:
  11. noResponse:
  12. runs-on: ubuntu-latest
  13. steps:
  14. - uses: lee-dohm/no-response@v0.5.0
  15. with:
  16. token: ${{ github.token }}
  17. daysUntilClose: 30
  18. responseRequiredLabel: need-feedback
  19. closeComment: >
  20. This issue has been automatically closed because there has been no response
  21. to our request for more information from the original author. With only the
  22. information that is currently in the issue, we don't have enough information
  23. to take action. Please reach out if you have or find the answers we need so
  24. that we can investigate further.