stale.yaml 970 B

12345678910111213141516171819202122
  1. name: 'Infra: Close stale issues'
  2. on:
  3. schedule:
  4. - cron: '30 1 * * *'
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/stale@v8
  10. with:
  11. days-before-issue-stale: 7
  12. days-before-issue-close: 3
  13. days-before-pr-stale: 7
  14. days-before-pr-close: 7
  15. stale-issue-message: 'This issue has been automatically marked as stale because no requested feedback has been provided. It will be closed if no further activity occurs. Thank you for your contributions.'
  16. stale-pr-message: 'This PR has been automatically marked as stale because no requested changes have been applied. It will be closed if no further activity occurs. Thank you for your contributions.'
  17. stale-issue-label: 'status/stale'
  18. stale-pr-label: 'status/stale'
  19. only-labels: 'status/pending'
  20. remove-issue-stale-when-updated: true
  21. labels-to-remove-when-unstale: 'status/pending'