Skip to content

Update F1DB Data

Update F1DB Data #1

Workflow file for this run

name: Update F1DB Data
on:
schedule:
- cron: '0 2 * * *' # Exécute tous les jours à 2h du matin
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install requests
- name: Update F1DB Data
run: |
python update_data.py
- name: Commit and push changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update F1DB data"
git push
env:
GITHUB_TOKEN: ${{ secrets.WORKLOW_GITHUB_TOKEN }}