Skip to content

Check for l10n updates #15925

Check for l10n updates

Check for l10n updates #15925

# https://crontab.guru/crontab.5.html
name: Check for l10n updates
on:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '1 * * * *' # Once every hour (minute 1)
jobs:
update-translations:
runs-on: windows-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
- name: Push changes
run: |
git config --global user.name github-actions
git config --global user.email github-actions@github.com
git remote add l10n https://github.com/nvdaaddons/mp3DirectCut # Replace with the repo name, for example, clipContentsDesigner
git fetch l10n
git reset l10n/stable addon/doc addon/locale
git commit -m "Update translations"
git pull
git push