fix(chatgpt): 修复chatgpt绘图插件,直接用dall-e-3 #585
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: auto-format | |
on: push | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: isort/[email protected] | |
with: | |
configuration: "." | |
- uses: psf/black@stable | |
with: | |
options: "--verbose ." | |
src: "." | |
version: "23.1.0" | |
- name: Commit & Push changes | |
uses: actions-js/push@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
message: "style: Auto format" |