diff --git a/.github/workflows/ci-dispatch.yml b/.github/workflows/ci-dispatch.yml index 6dfaa5fdf..998bf373d 100644 --- a/.github/workflows/ci-dispatch.yml +++ b/.github/workflows/ci-dispatch.yml @@ -43,7 +43,7 @@ jobs: Run-L10n-Win: needs: Select-Channels if: contains(fromJSON(needs.Select-Channels.outputs.channels), 'l10n') - uses: ./.github/workflows/l10n.yml + uses: ./.github/workflows/main-l10n.yml with: job_to_run: L10n-Windows is_pull_request: true @@ -52,7 +52,7 @@ jobs: Run-L10n-Mac: needs: Select-Channels if: contains(fromJSON(needs.Select-Channels.outputs.channels), 'l10n') - uses: ./.github/workflows/l10n.yml + uses: ./.github/workflows/main-l10n.yml with: job_to_run: L10n-MacOS is_pull_request: true @@ -61,7 +61,7 @@ jobs: Run-L10n-Linux: needs: Select-Channels if: contains(fromJSON(needs.Select-Channels.outputs.channels), 'l10n') - uses: ./.github/workflows/l10n.yml + uses: ./.github/workflows/main-l10n.yml with: job_to_run: L10n-Linux is_pull_request: true diff --git a/.github/workflows/check-beta-functional.yml b/.github/workflows/functional-test-beta.yml similarity index 100% rename from .github/workflows/check-beta-functional.yml rename to .github/workflows/functional-test-beta.yml diff --git a/.github/workflows/l10n.yml b/.github/workflows/main-l10n.yml similarity index 100% rename from .github/workflows/l10n.yml rename to .github/workflows/main-l10n.yml diff --git a/.github/workflows/check-beta.yml b/.github/workflows/smoke-test-beta.yml similarity index 100% rename from .github/workflows/check-beta.yml rename to .github/workflows/smoke-test-beta.yml diff --git a/.github/workflows/check-devedition.yml b/.github/workflows/smoke-test-devedition.yml similarity index 100% rename from .github/workflows/check-devedition.yml rename to .github/workflows/smoke-test-devedition.yml diff --git a/.github/workflows/check-beta-l10n.yml b/.github/workflows/test-l10n-beta.yml similarity index 94% rename from .github/workflows/check-beta-l10n.yml rename to .github/workflows/test-l10n-beta.yml index a68f2117f..1a4223b91 100644 --- a/.github/workflows/check-beta-l10n.yml +++ b/.github/workflows/test-l10n-beta.yml @@ -38,7 +38,7 @@ jobs: Run-L10N-Mac-Smoke: needs: Check-Beta-Version if: ${{ needs.Check-Beta-Version.outputs.mac_l10n_reportable == 'True' }} - uses: ./.github/workflows/l10n.yml + uses: ./.github/workflows/main-l10n.yml with: job_to_run: L10N-MacOS secrets: inherit @@ -46,7 +46,7 @@ jobs: Run-L10N-Win-Smoke: needs: Check-Beta-Version if: ${{ needs.Check-Beta-Version.outputs.win_l10n_reportable == 'True' }} - uses: ./.github/workflows/l10n.yml + uses: ./.github/workflows/main-l10n.yml with: job_to_run: L10N-Windows secrets: inherit @@ -54,7 +54,7 @@ jobs: Run-L10N-Linux-Smoke: needs: Check-Beta-Version if: ${{ needs.Check-Beta-Version.outputs.linux_l10n_reportable == 'True' }} - uses: ./.github/workflows/l10n.yml + uses: ./.github/workflows/main-l10n.yml with: job_to_run: L10N-Linux secrets: inherit