File size: 1,895 Bytes
24bea5e 1e84a23 5414e53 1e84a23 fd3e2ad 5414e53 f3c3d2c 20a809d f3c3d2c 20a809d 5414e53 9eae82e fe80bed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# YOLOv5 π by Ultralytics, GPL-3.0 license
name: Close stale issues
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: |
π 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.
Access additional [YOLOv5](https://ultralytics.com/yolov5) π resources:
- **Wiki** β https://github.com/ultralytics/yolov5/wiki
- **Tutorials** β https://github.com/ultralytics/yolov5#tutorials
- **Docs** β https://docs.ultralytics.com
Access additional [Ultralytics](https://ultralytics.com) β‘ resources:
- **Ultralytics HUB** β https://ultralytics.com/hub
- **Vision API** β https://ultralytics.com/yolov5
- **About Us** β https://ultralytics.com/about
- **Join Our Team** β https://ultralytics.com/work
- **Contact Us** β https://ultralytics.com/contact
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 YOLOv5 π and Vision AI β!
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 β.'
days-before-stale: 30
days-before-close: 5
exempt-issue-labels: 'documentation,tutorial'
operations-per-run: 100 # The maximum number of operations per run, used to control rate limiting.
|