stale.yml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. name: 'Close stale issues and PRs'
  2. on:
  3. schedule:
  4. - cron: '30 */2 * * *'
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/stale@v9
  10. with:
  11. exempt-all-milestones: true
  12. days-before-issue-stale: 60
  13. days-before-issue-close: 67
  14. exempt-issue-labels: backlog,long-lived,bot
  15. stale-issue-message: >
  16. This issue has been automatically marked as stale because it has not had
  17. recent activity. It will be closed if no further activity occurs. If this
  18. was a feature request that others have shown no interest in, then it's
  19. unlikely to get implemented due to lack of interest. If others also
  20. want to see this feature then now is the time to say something! If this
  21. is a bug report or you have questions that still need answering, please say
  22. something. Feel free to drop by [our chat](https://owncast.rocket.chat) if
  23. you'd like to discuss in real-time with people.
  24. close-issue-message: >
  25. This issue has been automatically closed due to inactivity. This isn't done
  26. to be a jerk, or because the project doesn't care. But simply to keep the focus
  27. on things that are actively discussed, and has continued interest from the community and
  28. Owncast developers. Feel free to to comment if there is still discussion to be
  29. had, or if you plan to work on it. Feel free to drop by [our chat](https://owncast.rocket.chat)
  30. if you'd like to discuss in real-time with people. Thank you for being involved!
  31. days-before-pr-stale: 30
  32. days-before-pr-close: 37
  33. stale-pr-message: >
  34. This pull request has not had any activity in 30 days. If it has been abandoned
  35. no future actions are necessary, it will be automatically closed. If this is a PR
  36. with no clear plan on how to move forward on it getting into the project, then
  37. further discussion is needed. Now is a good time to discuss if this is still
  38. something that should be worked on. If this PR is idle simply because nobody
  39. has reviewed it, then feel free to ping somebody. However, if this PR is not linked to an
  40. existing issue regarding something that was previously determined to be important, then even
  41. more discussion needs to take place before it can get anywhere.
  42. This PR will be closed if no further activity occurs. Thank you for your contributions!
  43. close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'