Update hosts #375
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: Update hosts | |
on: | |
push: | |
paths: | |
- 'setHosts.py' | |
- 'setHosts_Classic.py' | |
- 'requirements.txt' | |
branches: | |
- 'master' | |
schedule: | |
- cron: '0 */4 * * *' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
format-fix: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install formatting tools | |
run: | | |
pip install black flake8 isort | |
- name: Run and fix formatting | |
run: | | |
black . | |
isort . | |
flake8 --ignore=E501,W503,E203 . | |
# 提交修复的代码 | |
- 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 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install pip | |
sudo pip install -r requirements.txt | |
- name: Run hosts update script1 | |
run: | | |
sudo python3 setHosts_Classic.py | |
# 提交并推送更新(仅在文件变更时) | |
- name: Commit and push changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "Update hosts list" | |
add: | | |
hosts | |
README.md | |
push: true |