Skip to content

Update F1DB Data

Update F1DB Data #8

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@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
node-version: '20'
- 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 }}