feat: 添加默认链接解析,但暂时不启用 #711
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" |