stale.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. name: 'Close stale issues'
  2. on:
  3. workflow_dispatch:
  4. schedule:
  5. # 1:30am every day
  6. - cron: '30 1 * * *'
  7. permissions:
  8. issues: write
  9. jobs:
  10. stale:
  11. runs-on: ubuntu-latest
  12. steps:
  13. - uses: actions/stale@5ebf00ea0e4c1561e9b43a292ed34424fb1d4578 # tag: v6.0.1
  14. with:
  15. days-before-stale: 90
  16. days-before-close: 30
  17. stale-issue-label: stale
  18. operations-per-run: 1750
  19. stale-issue-message: >
  20. This issue has been automatically marked as stale. **If this issue is still affecting you, please leave any comment** (for example, "bump"), and we'll keep it open. If you have any new additional information—in particular, if this is still reproducible in the [latest version of Electron](https://www.electronjs.org/releases/stable) or in the [beta](https://www.electronjs.org/releases/beta)—please include it with your comment!
  21. close-issue-message: >
  22. This issue has been closed due to inactivity, and will not be monitored. If this is a bug and you can reproduce this issue on a [supported version of Electron](https://www.electronjs.org/docs/latest/tutorial/electron-timelines#timeline) please open a new issue and include instructions for reproducing the issue.
  23. exempt-issue-labels: "discussion,security \U0001F512,enhancement :sparkles:"
  24. only-pr-labels: not-a-real-label
  25. pending-repro:
  26. runs-on: ubuntu-latest
  27. if: ${{ always() }}
  28. needs: stale
  29. steps:
  30. - uses: actions/stale@5ebf00ea0e4c1561e9b43a292ed34424fb1d4578 # tag: v6.0.1
  31. with:
  32. days-before-stale: -1
  33. days-before-close: 10
  34. stale-issue-label: blocked/need-repro
  35. stale-pr-label: not-a-real-label
  36. operations-per-run: 1750
  37. close-issue-message: >
  38. Unfortunately, without a way to reproduce this issue, we're unable to continue investigation. This issue has been closed and will not be monitored further. If you're able to provide a minimal test case that reproduces this issue on a [supported version of Electron](https://www.electronjs.org/docs/latest/tutorial/electron-timelines#timeline) please open a new issue and include instructions for reproducing the issue.