stale.yml 1009 B

1234567891011121314151617181920212223242526
  1. # https://github.com/actions/stale#usage
  2. name: Stale pull requests
  3. on:
  4. schedule:
  5. - cron: '0 0 * * *' # Midnight.
  6. jobs:
  7. stale:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/stale@v9
  11. with:
  12. days-before-pr-stale: 365
  13. days-before-pr-close: 30
  14. days-before-issue-stale: -1
  15. days-before-issue-close: -1
  16. exempt-pr-labels: "ARC,bounty,Codegen,Crash,Generics,High Priority,Macros,Next release,Showstopper,Static[T]"
  17. exempt-issue-labels: "Showstopper,Severe,bounty,Compiler Crash,Medium Priority"
  18. stale-pr-message: >
  19. This pull request is stale because it has been open for 1 year with no activity.
  20. Contribute more commits on the pull request and rebase it on the latest devel,
  21. or it will be closed in 30 days. Thank you for your contributions.
  22. close-pr-message: >
  23. This pull request has been marked as stale and closed due to inactivity after 395 days.