Merge pull request #3008 from weblate/weblate-catima-catima #366
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/create-pull-request@v8.1.0 | |
| with: | |
| title: "Update locales" | |
| commit-message: "Update locales" | |
| branch-suffix: timestamp |