您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

39 行
1.9KB

  1. # YOLOv5 🚀 by Ultralytics, GPL-3.0 license
  2. name: Close stale issues
  3. on:
  4. schedule:
  5. - cron: "0 0 * * *"
  6. jobs:
  7. stale:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/stale@v4
  11. with:
  12. repo-token: ${{ secrets.GITHUB_TOKEN }}
  13. stale-issue-message: |
  14. 👋 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.
  15. Access additional [YOLOv5](https://ultralytics.com/yolov5) 🚀 resources:
  16. - **Wiki** – https://github.com/ultralytics/yolov5/wiki
  17. - **Tutorials** – https://github.com/ultralytics/yolov5#tutorials
  18. - **Docs** – https://docs.ultralytics.com
  19. Access additional [Ultralytics](https://ultralytics.com) ⚡ resources:
  20. - **Ultralytics HUB** – https://ultralytics.com/hub
  21. - **Vision API** – https://ultralytics.com/yolov5
  22. - **About Us** – https://ultralytics.com/about
  23. - **Join Our Team** – https://ultralytics.com/work
  24. - **Contact Us** – https://ultralytics.com/contact
  25. 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!
  26. Thank you for your contributions to YOLOv5 🚀 and Vision AI ⭐!
  27. stale-pr-message: 'This pull request 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 ⭐.'
  28. days-before-stale: 30
  29. days-before-close: 5
  30. exempt-issue-labels: 'documentation,tutorial'
  31. operations-per-run: 100 # The maximum number of operations per run, used to control rate limiting.