stale.yml 614 B

123456789101112131415161718192021
  1. name: Close stale issues
  2. on:
  3. schedule:
  4. - cron: '0 0 * * *' # Run daily at midnight UTC
  5. permissions:
  6. issues: write
  7. jobs:
  8. stale:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/stale@v10
  12. with:
  13. 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.'
  14. close-issue-message: 'Closed due to inactivity. Feel free to reopen if this is still relevant.'
  15. days-before-stale: 21
  16. days-before-close: 7
  17. stale-issue-label: 'stale'
  18. only-labels: 'feedback'