Major changes: - New frontend (platform/web/): Vite + React 18 + TypeScript + Tailwind - 4-module navigation: 数据送标 / 模型管理 / 车队管理 / 系统管理 - Data catalog with charts (DMS/ADAS/Lane 3-tab view) - Quality review workflow (标注质检): Good/Fine/Bad scoring with auto-advance - Audit enhancements: batch operations, rejection categories, Feishu notifications - Operation audit log (操作日志) - World model simulation studio (仿真工坊) - Dataset version management with snapshots and diff - ADAS 7-class dataset integration (138K images organized + compressed) - User management with Feishu integration and pagination - CRUD/search/filter on all pages, card layout redesign - PIL-optimized image overlay rendering - Auto-snapshot on build, in_review workflow stage - Removed embedded algorithm code (now in workspace)
56 lines
2.6 KiB
YAML
56 lines
2.6 KiB
YAML
# Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
|
|
|
|
name: Close stale issues
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *" # Runs at 00:00 UTC every day
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
stale-issue-message: |
|
|
👋 Hello there! We wanted to give you a friendly reminder that this issue has not had any recent activity and may be closed soon, but don't worry - you can always reopen it if needed. If you still have any questions or concerns, please feel free to let us know how we can help.
|
|
|
|
For additional resources and information, please see the links below:
|
|
|
|
- **Docs**: https://docs.ultralytics.com
|
|
- **Platform**: https://platform.ultralytics.com/ultralytics/yolo26
|
|
- **Community**: https://community.ultralytics.com
|
|
|
|
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!
|
|
|
|
Thank you for your contributions to YOLO 🚀 and Vision AI ⭐
|
|
|
|
stale-pr-message: |
|
|
👋 Hello there! We wanted to let you know that we've decided to close this pull request due to inactivity. We appreciate the effort you put into contributing to our project, but unfortunately, not all contributions are suitable or aligned with our product roadmap.
|
|
|
|
We hope you understand our decision, and please don't let it discourage you from contributing to open source projects in the future. We value all of our community members and their contributions, and we encourage you to keep exploring new projects and ways to get involved.
|
|
|
|
For additional resources and information, please see the links below:
|
|
|
|
- **Docs**: https://docs.ultralytics.com
|
|
- **Platform**: https://platform.ultralytics.com/ultralytics/yolo26
|
|
- **Community**: https://community.ultralytics.com
|
|
|
|
Thank you for your contributions to YOLO 🚀 and Vision AI ⭐
|
|
|
|
ignore-pr-updates: true
|
|
remove-pr-stale-when-updated: false
|
|
exempt-all-assignees: true
|
|
days-before-issue-stale: 30
|
|
days-before-issue-close: 10
|
|
days-before-pr-stale: 90
|
|
days-before-pr-close: 30
|
|
exempt-issue-labels: "documentation,tutorial,TODO"
|
|
exempt-pr-labels: "TODO"
|
|
operations-per-run: 300 # The maximum number of operations per run, used to control rate limiting.
|