stale.yml 881 B

123456789101112131415161718192021
  1. name: 'Close stale issues and PRs'
  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. stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
  12. stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
  13. stale-issue-label: 'stale'
  14. stale-pr-label: 'stale'
  15. exempt-issue-labels: 'confirmed'
  16. exempt-pr-labels: 'confirmed'
  17. days-before-issue-stale: 60
  18. days-before-pr-stale: 90
  19. days-before-issue-close: 10
  20. days-before-pr-close: 10