Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Localization] Pulling New Localization Translations 907684366 #11840

Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
5261242
[Tests] Fix intro tests on older macOS (#11736)
mandel-macaque Jun 4, 2021
7d514fb
Seeing if pushing to this lego branch will create a PR inside Automat…
Jun 4, 2021
671f12d
[Actions] Remove broken action. (#11819)
mandel-macaque Jun 4, 2021
f70a589
try again
Jun 4, 2021
0eaec29
let's get the lego firing again
Jun 4, 2021
383e164
fire lego #3
Jun 4, 2021
f0ed39a
see if test gha occurs
Jun 4, 2021
6e5bda3
trying after changing gha name
Jun 4, 2021
1a8f249
changing the branch (#11826)
tj-devel709 Jun 4, 2021
7ab326e
after changing the GHA in main
Jun 4, 2021
270678e
perhaps the action was not updated yet
Jun 4, 2021
fb20166
Merge remote-tracking branch 'xamarin/main' into lego/TJ_TestingAutom…
Jun 4, 2021
9c67d6a
after merge main
Jun 4, 2021
323313c
wrong label
Jun 4, 2021
f61749d
fire
Jun 4, 2021
fa82f9e
adding sync to this branch
Jun 4, 2021
db697de
Merge branch 'AutomatingLocalizationGHATest' into lego/TJ_TestingAuto…
tj-devel709 Jun 4, 2021
d4add13
fixing env variable
Jun 4, 2021
081ad8f
Merge remote-tracking branch 'xamarin/lego/TJ_TestingAutomatingLocali…
Jun 4, 2021
8e52bbf
conditionals in the wrong place
Jun 4, 2021
9b71437
Merge branch 'AutomatingLocalizationGHATest' into lego/TJ_TestingAuto…
tj-devel709 Jun 4, 2021
661e976
add debugging
Jun 4, 2021
c783d54
more debugging
Jun 4, 2021
c1865cd
Merge branch 'AutomatingLocalizationGHATest' into lego/TJ_TestingAuto…
tj-devel709 Jun 4, 2021
3d0ea49
changing the label requirement for the tests
Jun 4, 2021
709a904
Merge branch 'AutomatingLocalizationGHATest' into lego/TJ_TestingAuto…
tj-devel709 Jun 4, 2021
d6087d7
more debugging 2
Jun 4, 2021
c0b3765
Merge remote-tracking branch 'xamarin/lego/TJ_TestingAutomatingLocali…
Jun 4, 2021
229d39d
try more debugging
Jun 4, 2021
9f01f98
Merge branch 'AutomatingLocalizationGHATest' into lego/TJ_TestingAuto…
tj-devel709 Jun 4, 2021
4751583
changing to create new branch
Jun 4, 2021
49d3d41
Merge remote-tracking branch 'xamarin/lego/TJ_TestingAutomatingLocali…
Jun 4, 2021
6cf4424
Merge branch 'AutomatingLocalizationGHATest' into lego/TJ_TestingAuto…
tj-devel709 Jun 4, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 6 additions & 14 deletions .github/workflows/localization_branch_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ jobs:
delete_branch:
name: 'Delete Localization branch'
runs-on: ubuntu-latest
env:
# We want to do the sync if we merged the pull request, the author was 'github-actions', and it has the correct label
FROM_LEGO: ${{ github.event.pull_request.merged == true && github.event.pull_request.user.login == 'github-actions[bot]' }} # && contains(github.event.pull_request.labels.*.names, 'localization_bot') }}
steps:
- uses: dawidd6/action-delete-branch@v3
name: 'delete'
Expand All @@ -55,26 +52,21 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
branches: AutomatingLocalizationGHATest2

checkout_localization_branch:
name: 'Checkout the Localization branch'
recreate_localization_branch:
name: 'Create the Localization branch'
runs-on: ubuntu-latest
needs: delete_branch
env:
FROM_LEGO: ${{ github.event.pull_request.merged == true && github.event.pull_request.user.login == 'github-actions[bot]' }} # && contains(github.event.pull_request.labels.*.names, 'localization_bot') }}
steps:
- uses: actions/checkout@v2
name: 'checkout'
if: ${{ github.event.pull_request.merged == true && github.event.pull_request.user.login == 'github-actions[bot]' }} # && contains(github.event.pull_request.labels.*.names, 'localization_bot') }}
- uses: peterjgrainger/action-create-branch@v2.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repository: ${{ github.repository }}
ref: 'AutomatingLocalizationGHATest2'
branch: 'AutomatingLocalizationGHATest2'

push_to_localization_branch:
name: 'Push to Localization branch'
runs-on: ubuntu-latest
needs: checkout_localization_branch
env:
FROM_LEGO: ${{ github.event.pull_request.merged == true && github.event.pull_request.user.login == 'github-actions[bot]' }} # && contains(github.event.pull_request.labels.*.names, 'localization_bot') }}
steps:
- uses: ad-m/github-push-action@master
name: push
Expand Down