Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
add ultralytics summary github action
Browse files Browse the repository at this point in the history
  • Loading branch information
SeeknnDestroy committed Jan 24, 2024
1 parent a104237 commit a91c422
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ultralytics-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Ultralytics Actions

on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, closed, synchronize, review_requested]

jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Run Ultralytics Formatting
uses: ultralytics/actions@main
with:
token: ${{ secrets.GITHUB_TOKEN }} # automatically generated, do not modify
summary: true # print PR summary with GPT4 (requires 'openai_api_key' or 'openai_azure_api_key' and 'openai_azure_endpoint')
openai_azure_api_key: ${{ secrets.OPENAI_AZURE_API_KEY }}
openai_azure_endpoint: ${{ secrets.OPENAI_AZURE_ENDPOINT }}

0 comments on commit a91c422

Please sign in to comment.