Last active
September 28, 2021 13:48
-
-
Save riggaroo/d6add4dfc18879a278d0ce11d7d32f18 to your computer and use it in GitHub Desktop.
Github Action workflow that copies string translations from one repo into another and creates a PR.
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: Translation Export to Android Repo | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
push_strings_to_over: | |
runs-on: ubuntu-latest | |
if: "contains(github.event.head_commit.message, 'Automated checkin')" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
path: 'android-i18n' | |
- name: Check out my other private repo | |
uses: actions/checkout@v2 | |
with: | |
path: 'android-app' | |
repository: repo-owner/android-app | |
token: ${{ secrets.I18N_TO_OVER_PAT }} | |
- name: Run rename script (renameall.sh) and commit to Android repo | |
run: | | |
cd android-app/ | |
git fetch | |
releaseBranchToCheckout=$(git branch -a | grep release | head -n 1 | xargs | cut -c 16-) | |
git checkout $releaseBranchToCheckout | |
echo "BASE_RELEASE_BRANCH=$releaseBranchToCheckout" >> $GITHUB_ENV | |
cd .. | |
cd android-i18n/ | |
./renameall.sh | |
cd .. | |
cp -R android-i18n/values-* android-app/resources/src/main/res/ | |
cd android-app/ | |
git config user.name "GitHub Actions" | |
git config user.email [email protected] | |
date=$(date '+%Y-%m-%d%H%M%S') | |
newBranchName=feature/new-translations-$date | |
echo "NEW_BRANCH_NAME=$newBranchName" >> $GITHUB_ENV | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.I18N_TO_OVER_PAT }} | |
path: android-app | |
base: ${{ env.BASE_RELEASE_BRANCH }} | |
commit-message: Update translations | |
committer: GitHub <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
branch: ${{ env.NEW_BRANCH_NAME }} | |
title: '🤖 Automation - New translations received for ${{ env.BASE_RELEASE_BRANCH }}' | |
body: | | |
New translations received from GoLF. | |
draft: false | |
- name: Slack notify | |
uses: rtCamp/action-slack-notify@master | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_CHANNEL: #android-bots | |
SLACK_TITLE: New translations have been received! 🌎 | |
SLACK_MESSAGE: Translation system has submitted new translations. Check them out here - ${{ steps.cpr.outputs.pull-request-url }} | |
MSG_MINIMAL: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment