Update Localizations #26
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 Localizations | |
on: | |
schedule: | |
- cron: "0 21 * * 5" # Run every Friday | |
workflow_dispatch: | |
jobs: | |
update-localizations: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ssh-key: ${{ secrets.SF_PUSH_KEY }} | |
- name: Set up Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Run update_from_crowdin.mts | |
run: scripts/update_from_crowdin.mts | |
env: | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_API_KEY: ${{ secrets.CROWDIN_API_KEY }} | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # @v7.0.5 | |
with: | |
commit-message: Update all translation files from Crowdin | |
title: Update all translation files from Crowdin | |
body: Automated update of files by GitHub action | |
branch: i18n/update | |
base: master |