We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a30af2 commit 4b7f4dfCopy full SHA for 4b7f4df
.github/workflows/format.yml
@@ -17,9 +17,11 @@ jobs:
17
- name: Run Ultralytics Formatting
18
uses: ultralytics/actions@main
19
with:
20
- token: ${{ secrets.GITHUB_TOKEN }} # automatically generated
21
- python: true
22
- docstrings: true
23
- markdown: true
24
- spelling: true
25
- links: true
+ token: ${{ secrets.GITHUB_TOKEN }} # automatically generated, do not modify
+ python: true # format Python code and docstrings
+ markdown: true # format Markdown and YAML
+ 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')
26
+ openai_azure_api_key: ${{ secrets.OPENAI_AZURE_API_KEY }}
27
+ openai_azure_endpoint: ${{ secrets.OPENAI_AZURE_ENDPOINT }}
0 commit comments