1
0

stale.yml 725 B

1234567891011121314151617
  1. name: 'Close stale issues and PR'
  2. on:
  3. schedule:
  4. - cron: '30 6 * * *'
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/stale@v9
  10. with:
  11. stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
  12. stale-pr-message: 'This PR is marked as stale because it has been open 45 days with no activity. You can remove stale label or comment if this PR is still valid.'
  13. close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
  14. days-before-stale: 30
  15. days-before-close: 5
  16. days-before-pr-close: -1