Merge pull request #2870 from weblate/weblate-catima-catima #338
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update locales | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - app/src/main/res/values-*/strings.xml | |
| - app/src/main/res/values/settings.xml | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| update-locales: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Add new locales | |
| run: .scripts/new-locales.py | |
| - name: Update locales | |
| run: .scripts/locales.py | |
| - name: Create Pull Request | |
| uses: peter-evans/[email protected] | |
| with: | |
| title: "Update locales" | |
| commit-message: "Update locales" | |
| branch-suffix: timestamp |