stale.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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@1160a2240286f5da8ec72b1c0816ce2481aabf84
  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. close-issue-label: ''
  28. close-issue-message: ''
  29. exempt-pr-labels: 'Status: Backlog,Status: In Progress'
  30. stale-pr-label: 'Status: Stale'
  31. stale-pr-message: |-
  32. This pull request has gone three weeks without activity. In another week, I will close it.
  33. 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!
  34. ----
  35. "A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀
  36. close-pr-label: ''
  37. close-pr-message: ''