Update Locales #29
This file contains 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: | |
schedule: | |
# run every wednesday at 13:00 | |
- cron: 00 13 * * 3 | |
workflow_dispatch: | |
jobs: | |
update-locales: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Update submodule | |
run: git submodule update --remote packages/client/components/i18n/locales | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: Upryzing CI | |
author_email: upryzing-ci@users.noreply.github.com | |
fetch: false | |
message: "chore: update locale strings" |