Import source strings #333
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: Import source strings | |
on: | |
schedule: | |
- cron: "0 7 * * 1-5" # Run Mon-Fri at 7AM UTC | |
workflow_dispatch: | |
jobs: | |
copy: | |
name: Copy strings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone l10n repository | |
uses: actions/checkout@v4 | |
with: | |
path: l10n_repo | |
- name: Clone main code repository | |
uses: actions/checkout@v4 | |
with: | |
repository: mozilla/blurts-server | |
fetch-depth: 0 | |
path: code_repo | |
- name: Copy source files | |
run: | | |
rsync -avh code_repo/locales/en/ l10n_repo/en/ --delete | |
- name: Get the current date for PR title | |
run: echo "current_date=$(date +"%Y-%m-%d")" >> $GITHUB_ENV | |
- uses: peter-evans/create-pull-request@v6 | |
with: | |
path: l10n_repo | |
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | |
commit-message: Extract new source strings | |
branch: l10n_automation | |
delete-branch: true | |
title: "Extract new strings (${{ env.current_date }})" |