no-response.yml 911 B

12345678910111213141516171819202122
  1. # Configuration for close-stale-issues - https://github.com/marketplace/actions/close-stale-issues
  2. name: 'Close awaiting response issues'
  3. on:
  4. schedule:
  5. - cron: '00 09 * * *'
  6. jobs:
  7. no-response:
  8. runs-on: ubuntu-latest
  9. permissions:
  10. issues: write
  11. pull-requests: write
  12. steps:
  13. - uses: actions/stale@v9
  14. with:
  15. days-before-stale: 14
  16. days-before-close: 0
  17. days-before-pr-close: -1
  18. stale-issue-label: 'state:stale'
  19. close-issue-message: "This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take action. Please reach out if you have or find the answers we need so that we can investigate further."
  20. only-labels: 'state:awaiting-response'