Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Glenn jocher patch 1 #129

Merged
merged 7 commits into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,33 @@ on:
types: [opened, closed, synchronize, review_requested]

jobs:
format:
Format:
runs-on: ubuntu-latest
steps:
- name: Run Ultralytics Formatting
uses: ultralytics/actions@main
with:
token: ${{ secrets._GITHUB_TOKEN }} # note GITHUB_TOKEN automatically generated
token: ${{ secrets._GITHUB_TOKEN }}
labels: true # autolabel issues and PRs
python: true # format Python code and docstrings
prettier: true # format YAML, JSON, Markdown and CSS
spelling: true # check spelling
links: false # check broken links
summary: true # print PR summary with GPT4o (requires 'openai_api_key')
openai_api_key: ${{ secrets.OPENAI_API_KEY }}

CLA:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Run Ultralytics CLA Check
uses: ultralytics/actions/cla@cla-branch
with:
github-token: ${{ secrets._GITHUB_TOKEN }}
cla_repository: 'ultralytics/cla'
cla_branch: 'main'
cla_signatures_path: 'signatures/version1/cla.json'
cla_document_url: 'https://docs.ultralytics.com/help/CLA'
allowlist: 'dependabot[bot],github-actions,bot*'
sign_comment: 'I have read the CLA Document and I sign the CLA'
allsigned_comment: 'All Contributors have signed the CLA. ✅'
Loading