mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
1480a5292b
* Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (Automation/TC) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (GitHub Workflows) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (GitHub Workflows) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (GitHub Issue Templates) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (Jenkins) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (README & Documentation) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (Jenkins) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (Random)
46 lines
1.6 KiB
YAML
46 lines
1.6 KiB
YAML
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/
|
|
|
|
name: "Sync Strings"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
|
|
jobs:
|
|
main:
|
|
name: "Sync Strings"
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: "Discover Fenix Beta Version"
|
|
id: fenix-beta-version
|
|
uses: mozilla-mobile/fenix-beta-version@2.0.0
|
|
- name: "Skip non-beta versions"
|
|
uses: andymckay/cancel-action@0.2
|
|
if: ${{ steps.fenix-beta-version.outputs.fenix-beta-version == '' }}
|
|
- name: "Checkout Master Branch"
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: main
|
|
ref: main
|
|
- name: "Checkout Beta Branch"
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: beta
|
|
ref: "releases_v${{ steps.fenix-beta-version.outputs.fenix-beta-version }}.0.0"
|
|
- name: "Sync Strings"
|
|
uses: mozilla-mobile/sync-strings-action@1.0.1
|
|
with:
|
|
src: main
|
|
dst: beta
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
path: beta
|
|
branch: automation/sync-strings-${{ steps.fenix-beta-version.outputs.major-beta-version }}
|
|
title: "Sync Strings from main to releases_${{steps.fenix-beta-version.outputs.fenix-beta-version}}.0"
|
|
body: "This (automated) PR syncs strings from `main` to `releases_${{steps.fenix-beta-version.outputs.fenix-beta-version}}.0.0`"
|
|
labels: needs:review
|