更新api_data #15
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: 更新api_data | |
on: | |
# 手动触发 | |
workflow_dispatch: | |
schedule: | |
# 每天凌晨更新数据 | |
- cron: '0 0 * * *' | |
jobs: | |
update_api_data: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
# 设置python环境 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
cache: pip | |
# pip install | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
# 更新api_data | |
- name: Update api_data | |
run: | | |
python update_data.py | |
- name: 更新api项目 | |
uses: Smart-Transportation/[email protected] | |
with: | |
github_token: ${{ secrets.GH_TOKEN }} | |
branch: 'main' | |
author_email: 'github-actions[bot]@users.noreply.github.com' | |
author_name: 'github-actions[bot]' | |
message: '🐳 chore: 更新api数据' |