Skip to main content

Ultralytics logo

English | 简体中文

🚀 Ultralytics Actions

Welcome to Ultralytics Actions - a collection of GitHub Actions for automating code quality, PR management, and CI/CD workflows across Ultralytics projects.

GitHub Actions Marketplace

Actions CI Ultralytics Actions GitHub Report codecov

Ultralytics Discord Ultralytics Forums Ultralytics Reddit

📦 Repository Contents

This repository provides three main components:

  1. Ultralytics Actions - Main GitHub Action for AI-powered code formatting, PR summaries, and auto-labeling
  2. Standalone Actions - Reusable composite actions for common CI/CD tasks
  3. Python Package - ultralytics-actions package for programmatic use

Ultralytics Actions (Main Action)

AI-powered formatting, labeling, and PR summaries for Python, JavaScript/TypeScript, Swift, Dart, and web/docs files.

📄 Features

  • Python Code: Formatted using Ruff, an extremely fast Python linter and formatter
  • Python Docstrings: Google-style formatting enforced with Ultralytics Python docstring formatter (optional)
  • JavaScript/TypeScript: Formatted with Biome, an extremely fast formatter for JS, TS, JSX, TSX, and JSON (optional, auto-detected via biome.json or biome.jsonc)
  • Web and Docs Files: Styled with Prettier for JS, TS, CSS, HTML, JSON, YAML, Markdown, and shell scripts
  • Swift Code: Formatted with swift-format (requires macos-latest runner)
  • Dart Code: Formatted with dart format for Dart and Flutter projects
  • Spell Check: Common misspellings caught using codespell
  • Broken Links Check: Broken links identified using Lychee
  • PR Summary: Concise Pull Request summaries generated using AI
  • PR Review: AI-powered code reviews identify critical bugs, security issues, and quality concerns with suggested fixes
  • Auto-labeling: Applies relevant labels to issues, PRs, and discussions via AI

🤖 Supported AI Providers

Choose between OpenAI or Anthropic for AI-powered features:

Provider Default Model Default PR Review Model API Key
OpenAI gpt-5.6-luna gpt-5.6-luna openai_api_key
Anthropic claude-sonnet-5 claude-opus-5 anthropic_api_key

The provider is auto-detected based on which API key you provide. Override with the model input, or use review_model to override PR review only.

🛠️ How It Works

Triggers on GitHub events to streamline workflows:

  • Pull Requests: Ensures formatting standards, generates summaries, provides AI reviews, and applies labels
  • Issues: Automatically applies relevant labels using AI
  • Discussions: Automatically applies relevant labels using AI

🔧 Setup

Create .github/workflows/ultralytics-actions.yml:

# 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]
  discussion:
    types: [created]
  pull_request:
    branches: [main]
    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
  discussions: write # Add labels to discussions

jobs:
  actions:
    runs-on: ubuntu-latest
    steps:
      - name: Run Ultralytics Actions
        uses: ultralytics/actions@main
        with:
          token: ${{ secrets.GITHUB_TOKEN }} # Auto-generated token
          labels: true # Auto-label issues/PRs using AI
          python: true # Format Python with Ruff
          # python-version: "3.14" # Optional: set up a specific Python version (default: runner Python)
          python_docstrings: true # Format Python docstrings (default: true)
          biome: true # Format JS/TS with Biome (auto-detected via biome.json or biome.jsonc)
          prettier: true # Format YAML, JSON, Markdown, CSS
          swift: false # Format Swift (requires macos-latest)
          dart: false # Format Dart/Flutter
          spelling: true # Check spelling with codespell
          links: true # Check broken links with Lychee
          summary: true # Generate AI-powered PR summaries
          # AI API keys - provide OpenAI OR Anthropic (model auto-detected from key)
          openai_api_key: ${{ secrets.OPENAI_API_KEY }}
          # anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
          # model: gpt-5.6-luna  # Optional: set model explicitly
          # review_model: claude-opus-5  # Optional: override PR review model
          brave_api_key: ${{ secrets.BRAVE_API_KEY }} # Used for broken link resolution

Standalone Actions

Reusable composite actions for common CI/CD tasks. Each can be used independently in your workflows.

1. Retry Action

Retry failed commands with exponential backoff and jitter.

- uses: ultralytics/actions/retry@main
  with:
    run: npm install
    retries: 3
    timeout_minutes: 5

📖 Full Documentation →

2. Cleanup Disk Action

Free up disk space on GitHub runners by removing unnecessary packages and files.

- uses: ultralytics/actions/cleanup-disk@main

📖 Full Documentation →

3. GitHub Report Action

Summarize open PRs and failed default-branch GitHub Actions across organization repositories.

- uses: ultralytics/actions/github-report@main
  with:
    token: ${{ secrets.GITHUB_TOKEN }}
    org: ultralytics # Optional: defaults to ultralytics
    visibility: all # Optional: public, private, internal, all, or comma-separated
    auto_merge_actions_prs: true # Optional: auto-merge eligible GitHub Actions update PRs

📖 Full Documentation →

4. Dependabot Action

Update GitHub Actions versions across organization repositories with cached release resolution.

- uses: ultralytics/actions/dependabot@main
  with:
    token: ${{ secrets.GITHUB_TOKEN }}

📖 Full Documentation →

5. CLA Action

Check every pull request commit author against the central Ultralytics CLA signature ledger.

- uses: ultralytics/actions/cla@main
  with:
    github-token: ${{ secrets.GITHUB_TOKEN }}
    cla-token: ${{ secrets._GITHUB_TOKEN }}

📖 Full Documentation →

6. Setup uv Action

Use the official uv setup action with Ultralytics defaults, optional Python environment activation, and dependency caching.

- uses: ultralytics/actions/setup-uv@main
  with:
    python-version: "3.14"
    activate-environment: true

📖 Full Documentation →

Python Package

Install the ultralytics-actions package for programmatic access to action utilities, including all requirements, in a Python>=3.8 environment.

PyPI - Version Ultralytics Downloads PyPI - Python Version

uv pip install ultralytics-actions

Available Modules:

  • actions.review_pr - AI-powered PR review
  • actions.summarize_pr - Generate PR summaries
  • actions.github_report - Generate GitHub organization reports
  • actions.first_interaction - Welcome message for new contributors
  • And more in actions/ directory

💡 Contribute

Ultralytics thrives on community collaboration, and we deeply value your contributions! Please see our Contributing Guide for details on how you can get involved. We also encourage you to share your feedback through our Survey. A huge thank you 🙏 to all our contributors!

Ultralytics open-source contributors

📄 License

Ultralytics offers two licensing options:

  • AGPL-3.0 License: An OSI-approved open-source license ideal for students, researchers, and enthusiasts who value open collaboration. See the LICENSE file for details.
  • Enterprise License: Designed for commercial use, this license allows integrating Ultralytics software and AI models into commercial products without AGPL-3.0's open-source requirements. For enterprise solutions, contact Ultralytics Licensing.

📫 Contact

For bug reports or feature suggestions related to Ultralytics Actions, please submit an issue via GitHub Issues. Join our Discord community for discussions and support!


Ultralytics GitHub space Ultralytics LinkedIn space Ultralytics Twitter space Ultralytics YouTube space Ultralytics TikTok space Ultralytics BiliBili space Ultralytics Discord

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ultralytics_actions-0.3.10.tar.gz (128.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ultralytics_actions-0.3.10-py3-none-any.whl (103.7 kB view details)

Uploaded Python 3

File details

Details for the file ultralytics_actions-0.3.10.tar.gz.

File metadata

  • Download URL: ultralytics_actions-0.3.10.tar.gz
  • Upload date:
  • Size: 128.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ultralytics_actions-0.3.10.tar.gz
Algorithm Hash digest
SHA256 0194d67d289f4af44ab487511b0eb2360a56bcf6d0bb81409f2308f41cefe7d0
MD5 456ecedcb34cb3845e803ebe5ffa0c92
BLAKE2b-256 8e4e7da2db506a4b9766bb94053a289dba38eb1e5bbfa821aabaf6d8815f92d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultralytics_actions-0.3.10.tar.gz:

Publisher: publish.yml on ultralytics/actions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultralytics_actions-0.3.10-py3-none-any.whl.

File metadata

File hashes

Hashes for ultralytics_actions-0.3.10-py3-none-any.whl
Algorithm Hash digest
SHA256 fbc53d4d11bae720e5b7f1cd698c94d609429c804ae549930d55e18c27c73200
MD5 acfaacb4ed3a55cc1dd998a94a54f349
BLAKE2b-256 4f383127c530741a5487d5019a3406318a00ec8484732f6aa4612c2cb6cde4e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultralytics_actions-0.3.10-py3-none-any.whl:

Publisher: publish.yml on ultralytics/actions

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page