stale.yaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. \n\n\n This issue is labeled `inactive` because the last
  20. activity was over 90 days ago.
  21. stale-pr-message: >
  22. We triage inactive PRs and issues in order to make it easier to find
  23. active work. If this PR should remain active, please comment or
  24. remove the `inactive` label. \n\n\n This PR is labeled `inactive`
  25. because the last activity was over 90 days ago. This PR will be
  26. closed and archived after 14 additional days without activity.
  27. close-pr-message: >
  28. We triage inactive PRs and issues in order to make it easier to find
  29. active work. If this PR should remain active or becomes active
  30. again, please reopen it. \n\n\n This PR was closed and archived
  31. because there has been no new activity in the 14 days since the
  32. `inactive` label was added.
  33. stale-issue-label: 'inactive'
  34. stale-pr-label: 'inactive'
  35. exempt-issue-labels:
  36. 'long term,design idea,design update,good first issue,leads question'
  37. days-before-stale: 90
  38. days-before-close: 14
  39. days-before-issue-close: -1
  40. operations-per-run: 100