You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.8KB

  1. name: Close stale issues
  2. on:
  3. schedule:
  4. - cron: "0 0 * * *"
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/stale@v3
  10. with:
  11. repo-token: ${{ secrets.GITHUB_TOKEN }}
  12. stale-issue-message: |
  13. 👋 Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs.
  14. Access additional [YOLOv5](https://ultralytics.com/yolov5) 🚀 resources:
  15. - **Wiki** – https://github.com/ultralytics/yolov5/wiki
  16. - **Tutorials** – https://github.com/ultralytics/yolov5#tutorials
  17. - **Docs** – https://docs.ultralytics.com
  18. Access additional [Ultralytics](https://ultralytics.com) ⚡ resources:
  19. - **Ultralytics HUB** – https://ultralytics.com
  20. - **Vision API** – https://ultralytics.com/yolov5
  21. - **About Us** – https://ultralytics.com/about
  22. - **Join Our Team** – https://ultralytics.com/work
  23. - **Contact Us** – https://ultralytics.com/contact
  24. Feel free to inform us of any other **issues** you discover or **feature requests** that come to mind in the future. Pull Requests (PRs) are also always welcomed!
  25. Thank you for your contributions to YOLOv5 🚀 and Vision AI ⭐!
  26. stale-pr-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions YOLOv5 🚀 and Vision AI ⭐.'
  27. days-before-stale: 30
  28. days-before-close: 5
  29. exempt-issue-labels: 'documentation,tutorial'
  30. operations-per-run: 100 # The maximum number of operations per run, used to control rate limiting.