stale.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. name: 'close stale issues/PRs'
  2. on:
  3. schedule:
  4. - cron: '0 0 * * *'
  5. workflow_dispatch:
  6. jobs:
  7. stale:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/stale@87c2b794b9b47a9bec68ae03c01aeb572ffebdb1
  11. with:
  12. repo-token: ${{ github.token }}
  13. days-before-stale: 21
  14. days-before-close: 7
  15. only-labels: ""
  16. operations-per-run: 100
  17. remove-stale-when-updated: true
  18. debug-only: false
  19. ascending: false
  20. exempt-issue-labels: "Status: Backlog,Status: In Progress"
  21. stale-issue-label: "Status: Stale"
  22. stale-issue-message: |-
  23. This issue has gone three weeks without activity. In another week, I will close it.
  24. But! If you comment or otherwise update it, I will reset the clock, and if you label it `Status: Backlog` or `Status: In Progress`, I will leave it alone ... forever!
  25. ----
  26. "A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀
  27. skip-stale-issue-message: false
  28. close-issue-label: ""
  29. close-issue-message: ""
  30. exempt-pr-labels: "Status: Backlog,Status: In Progress"
  31. stale-pr-label: "Status: Stale"
  32. stale-pr-message: |-
  33. This pull request has gone three weeks without activity. In another week, I will close it.
  34. But! If you comment or otherwise update it, I will reset the clock, and if you label it `Status: Backlog` or `Status: In Progress`, I will leave it alone ... forever!
  35. ----
  36. "A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀
  37. skip-stale-pr-message: false
  38. close-pr-label: ""
  39. close-pr-message: ""