stale.yaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. name: 'Triage inactive issues and PRs'
  5. on:
  6. schedule:
  7. - cron: '30 1 * * *'
  8. jobs:
  9. stale:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/stale@v7
  13. with:
  14. stale-issue-message: >
  15. We triage inactive PRs and issues in order to make it easier to find
  16. active work. If this issue should remain active or becomes active
  17. again, please comment or remove the `inactive` label. The `long
  18. term` label can also be added for issues which are expected to take
  19. time.
  20. This issue is labeled `inactive` because the last activity was over
  21. 90 days ago.
  22. stale-pr-message: >
  23. We triage inactive PRs and issues in order to make it easier to find
  24. active work. If this PR should remain active, please comment or
  25. remove the `inactive` label.
  26. This PR is labeled `inactive` because the last activity was over 90
  27. days ago. This PR will be closed and archived after 14 additional
  28. days without activity.
  29. close-pr-message: >
  30. We triage inactive PRs and issues in order to make it easier to find
  31. active work. If this PR should remain active or becomes active
  32. again, please reopen it.
  33. This PR was closed and archived because there has been no new
  34. activity in the 14 days since the `inactive` label was added.
  35. stale-issue-label: 'inactive'
  36. stale-pr-label: 'inactive'
  37. exempt-issue-labels:
  38. 'long term,design idea,design update,good first issue,leads question'
  39. days-before-stale: 90
  40. days-before-close: 14
  41. days-before-issue-close: -1
  42. operations-per-run: 100