ClashForge #17
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: ClashNodeConverter | |
on: | |
schedule: | |
- cron: '0 7-22/5 * * *' | |
push: | |
paths-ignore: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
run_demo_actions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# 转到 Settings > Secrets and variables > Actions | |
# 点击 New repository secret,添加 Secret,名称为 BOT,输入你的token | |
token: ${{ secrets.BOT }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10.10' | |
- name: Install requirements.txt | |
run: | | |
pip install -r ./requirements.txt | |
- name: Run ClashNodeConverter.py | |
run: python ClashNodeConverter.py | |
- name: Commit and push file | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add clash_config.yaml | |
git commit -m "update" || echo "No changes to commit" | |
git push https://${{ secrets.BOT }}:[email protected]/${GITHUB_REPOSITORY}.git |