From 6a14c89e7f7d33e3d2070079f32a4f089ea34a14 Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Wed, 20 Jul 2022 18:01:59 +0200 Subject: [PATCH] Bug 1777255 - part 3: Bump fenix-beta-version Github Action to support new version numbers --- .github/workflows/sync-strings.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync-strings.yml b/.github/workflows/sync-strings.yml index 5c4fa5490..6f757fb09 100644 --- a/.github/workflows/sync-strings.yml +++ b/.github/workflows/sync-strings.yml @@ -15,10 +15,10 @@ jobs: steps: - name: "Discover Fenix Beta Version" id: fenix-beta-version - uses: mozilla-mobile/fenix-beta-version@2.0.0 + uses: mozilla-mobile/fenix-beta-version@4.1.0 - name: "Skip non-beta versions" uses: andymckay/cancel-action@0.2 - if: ${{ steps.fenix-beta-version.outputs.fenix-beta-version == '' }} + if: ${{ steps.fenix-beta-version.outputs.beta_version == '' }} - name: "Checkout Master Branch" uses: actions/checkout@v2 with: @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v2 with: path: beta - ref: "releases_v${{ steps.fenix-beta-version.outputs.fenix-beta-version }}.0.0" + ref: "releases_v${{ steps.fenix-beta-version.outputs.beta_version }}.0.0" - name: "Sync Strings" uses: mozilla-mobile/sync-strings-action@1.0.1 with: @@ -39,6 +39,6 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} path: beta - branch: automation/sync-strings-${{ steps.fenix-beta-version.outputs.fenix-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`" + branch: automation/sync-strings-${{ steps.fenix-beta-version.outputs.beta_version }} + title: "Sync Strings from main to releases_${{steps.fenix-beta-version.outputs.beta_version}}.0" + body: "This (automated) PR syncs strings from `main` to `releases_${{steps.fenix-beta-version.outputs.beta_version}}.0.0`"