From c12011a3001411e33a6980117a3979079f927aa1 Mon Sep 17 00:00:00 2001 From: Ultralytics Assistant <135830346+UltralyticsAssistant@users.noreply.github.com> Date: Wed, 14 Aug 2024 20:47:18 +0200 Subject: [PATCH] Ultralytics Actions JSON, CSS and autolabel support (#28) --- .github/workflows/format.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index dd6111f..56df2b8 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -1,14 +1,15 @@ -# Ultralytics 🚀 - AGPL-3.0 license +# Ultralytics 🚀 - AGPL-3.0 License https://ultralytics.com/license # Ultralytics Actions https://github.com/ultralytics/actions # This workflow automatically formats code and documentation in PRs to official Ultralytics standards name: Ultralytics Actions on: - push: - branches: [main] + issues: + types: [opened] pull_request: branches: [main] + types: [opened, closed, synchronize, review_requested] jobs: format: @@ -17,11 +18,12 @@ jobs: - name: Run Ultralytics Formatting uses: ultralytics/actions@main with: - token: ${{ secrets.GITHUB_TOKEN }} # automatically generated, do not modify + token: ${{ secrets.PERSONAL_ACCESS_TOKEN || secrets.GITHUB_TOKEN }} # note GITHUB_TOKEN automatically generated + labels: true # autolabel issues and PRs python: true # format Python code and docstrings - markdown: true # format Markdown and YAML + prettier: true # format YAML, JSON, Markdown and CSS spelling: true # check spelling - links: true # check broken links - summary: true # print PR summary with GPT4 (requires 'openai_api_key' or 'openai_azure_api_key' and 'openai_azure_endpoint') + links: false # check broken links + summary: true # print PR summary with GPT4o (requires 'openai_api_key') openai_azure_api_key: ${{ secrets.OPENAI_AZURE_API_KEY }} openai_azure_endpoint: ${{ secrets.OPENAI_AZURE_ENDPOINT }}