Skip to content

Translated using Weblate (Turkish) #118

Translated using Weblate (Turkish)

Translated using Weblate (Turkish) #118

name: Update locale lists
on:
workflow_dispatch:
push:
paths:
- '**.xml'
concurrency:
group: "locale-list"
cancel-in-progress: true
jobs:
create:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/checkout@v2
- name: Edit files
run: |
python3 .github/locales.py
- name: Commit to the repo
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git add .
# "echo" returns true so the build succeeds, even if no changed files
git commit -m 'chore: update list of locales' || echo
git push