stale.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. name: 'Manage stale issues'
  2. on:
  3. schedule:
  4. - cron: '0 0 * * *'
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - name: Stale Bot
  10. uses: actions/stale@v3
  11. with:
  12. repo-token: ${{ secrets.GITHUB_TOKEN }}
  13. # Number of days of inactivity before an issue or PR is considered stale
  14. days-before-stale: 15
  15. # Number of days of inactivity before a stale issue or PR is closed
  16. days-before-close: 30
  17. # Issues or PRs with these labels will never be considered stale
  18. exempt-pr-labels: stalebot ignore
  19. # Label to use when marking an issue or PR as stale
  20. stale-pr-label: waiting
  21. # Comment to post when marking an issue or PR as stale
  22. stale-pr-message: |
  23. Hi all! This thread has not had any recent activity.
  24. Are there any updates? Thanks!
  25. # Comment to post when closing a stale issue or PR
  26. close-pr-message: |
  27. Hi everyone.
  28. This thread is being closed as there was no response to the previous prompt.
  29. However, please leave a comment whenever you're ready to resume,
  30. so the thread can be reopened. Thanks again!