Skip to content

Commit

Permalink
更新 update_hosts.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sinspired authored Dec 7, 2024
1 parent 71b5c4a commit e14fdbb
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions .github/workflows/update_hosts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,37 @@ permissions:
contents: write

jobs:
formatting:
format-fix:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
# Run reorder-python-imports + black formatter
- name: Black Code Formatter
uses: tdeboissiere/python-format-action@master
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install formatting tools
run: |
pip install black flake8 isort
- name: Run and fix formatting
run: |
black .
isort .
flake8 .
# 提交修复的代码
- name: Commit and push fixes
if: success() || failure()
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git add .
git commit -m "Fix formatting issues" || echo "No changes to commit"
git push
update-hosts:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e14fdbb

Please sign in to comment.