stale.yml 552 B

1234567891011121314151617
  1. name: Close stale issues
  2. on:
  3. schedule:
  4. - cron: '0 0 * * *' # Run daily at midnight UTC
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/stale@v9
  10. with:
  11. stale-issue-message: 'This issue has been marked as stale due to inactivity. It will be closed in 7 days if there is no further activity.'
  12. close-issue-message: 'Closed due to inactivity. Feel free to reopen if this is still relevant.'
  13. days-before-stale: 21
  14. days-before-close: 7
  15. stale-issue-label: 'feedback'