Replace third-party CLA action #678
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license | |
| # Ultralytics Actions https://github.com/ultralytics/actions | |
| # This workflow formats code and documentation in PRs to Ultralytics standards | |
| name: Ultralytics Actions | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| discussion: | |
| types: [created] | |
| pull_request: | |
| branches: [main, master] | |
| types: [opened, closed, synchronize, review_requested] | |
| permissions: | |
| contents: write # Modify code in PRs | |
| pull-requests: write # Add comments and labels to PRs | |
| issues: write # Add comments and labels to issues | |
| jobs: | |
| actions: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run Ultralytics Actions | |
| uses: ultralytics/actions@main | |
| with: | |
| token: ${{ secrets._GITHUB_TOKEN || secrets.GITHUB_TOKEN }} # Auto-generated token | |
| labels: true # Auto-label issues/PRs using AI | |
| python: true # Format Python with Ruff and docformatter | |
| prettier: true # Format YAML, JSON, Markdown, CSS | |
| swift: false # Format Swift (requires macos-latest) | |
| spelling: true # Check spelling with codespell | |
| links: false # Check broken links with Lychee | |
| summary: true # Generate AI-powered PR summaries | |
| openai_api_key: ${{ secrets.OPENAI_API_KEY }} # Powers PR summaries, labels and comments | |
| brave_api_key: ${{ secrets.BRAVE_API_KEY }} # Used for broken link resolution | |
| first_issue_response: | | |
| 👋 Hello @${{ github.actor }}, thank you for your interest in Ultralytics YOLOv3 🚀! We recommend a visit to the [Ultralytics YOLOv3 Docs](https://docs.ultralytics.com/models/yolov3) where you can find usage examples and answers to many common questions. | |
| If this is a 🐛 Bug Report, please provide a [minimum reproducible example](https://docs.ultralytics.com/help/minimum-reproducible-example/) to help us debug it. | |
| If this is a custom training ❓ Question, please provide as much information as possible, including dataset image examples and training logs, and verify you are following our [Tips for Best Training Results](https://docs.ultralytics.com/guides/model-training-tips). | |
| Join the Ultralytics community where it suits you best. For real-time chat, head to [Discord](https://discord.com/invite/ultralytics) 🎧. Prefer in-depth discussions? Check out the [Forums](https://community.ultralytics.com/). Or dive into threads on our [Subreddit](https://www.reddit.com/r/ultralytics/) to share knowledge with the community. | |
| ## Install | |
| Clone the repository and install dependencies in a [**Python>=3.8.0**](https://www.python.org/) environment with [**PyTorch>=1.8**](https://pytorch.org/get-started/locally/): | |
| ```bash | |
| git clone https://github.com/ultralytics/yolov3 | |
| cd yolov3 | |
| pip install -r requirements.txt | |
| ``` | |
| ## Status | |
| <a href="https://github.com/ultralytics/yolov3/actions/workflows/ci-testing.yml"><img src="https://github.com/ultralytics/yolov3/actions/workflows/ci-testing.yml/badge.svg" alt="YOLOv3 CI"></a> | |
| If this badge is green, all [Ultralytics YOLOv3 CI](https://github.com/ultralytics/yolov3/actions/workflows/ci-testing.yml) tests are passing. CI tests verify correct operation of YOLOv3 training, validation, inference, and export on every commit. |