Import Android components #564
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 Android components | |
on: | |
schedule: | |
- cron: "0 15 * * 1-5" | |
workflow_dispatch: | |
jobs: | |
copy: | |
name: Import strings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone android-l10n repository | |
uses: actions/checkout@v4 | |
with: | |
path: l10n | |
- name: Clone gecko-dev repository | |
uses: actions/checkout@v4 | |
with: | |
repository: mozilla/gecko-dev | |
path: source | |
sparse-checkout: | | |
mobile/android/android-components | |
- name: Set up Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install Python dependencies | |
run: | | |
pip install -r l10n/.github/requirements.txt | |
- name: Remove source files | |
run: | | |
# Remove all source files before copying, in case a component was | |
# removed from the code repository. | |
find l10n/mozilla-mobile/android-components -type d -name "values" | xargs rm -rf $1 | |
- name: Copy source files | |
run: > | |
python l10n/.github/scripts/import_strings.py source | |
--toml source/mobile/android/android-components/l10n.toml | |
--dest l10n/mozilla-mobile/android-components | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.ANDROID_GITHUB_TOKEN }} | |
path: l10n | |
branch: ac_l10n_updates | |
author: l10n-bot <[email protected]> | |
commit-message: "Import android-components quarantine" | |
title: "Import android-components quarantine" | |
body: "Import android-components quarantine" | |
labels: l10n-bot |