Skip to content

Dev

Dev #64

Workflow file for this run

name: Update Translation Coverage
on:
push:
branches: [ main ]
pull_request:
jobs:
update-coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Run translation update script
run: python .github/scripts/update_languages.py
- name: Commit changes
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add README.md
git diff --cached --quiet || git commit -m "Aggiorna tabella lingue automaticamente"
git push origin main