stale.yml 857 B

12345678910111213141516171819202122
  1. name: 'Close stale issues and PRs'
  2. on:
  3. schedule:
  4. - cron: '30 1 * * *'
  5. permissions:
  6. issues: write
  7. pull-requests: write
  8. jobs:
  9. stale:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/stale@v6
  13. with:
  14. exempt-all-milestones: true
  15. any-of-labels: 'need info'
  16. days-before-stale: 30
  17. days-before-close: 7
  18. stale-issue-message: "This issue has been automatically marked as stale as there has been no recent activity in response to our request for more information. Please respond so that we can proceed with this issue."
  19. close-issue-message: "This issue has been automatically closed as sufficient information hasn't been provided on the issue for further actions to be taken. Feel free to add more information."