From 704b036ffe137b88f0225357dcdd8b5a391430e4 Mon Sep 17 00:00:00 2001 From: Arash Eghtesadi Date: Thu, 11 Dec 2025 14:46:04 -0800 Subject: [PATCH 1/3] rename github action workflows --- .github/workflows/ci-dispatch.yml | 6 +++--- .../{check-beta-functional.yml => functional-test-beta.yml} | 0 .github/workflows/{check-beta.yml => smoke-test-beta.yml} | 0 .../{check-devedition.yml => smoke-test-devedition.yml} | 0 .../workflows/{check-beta-l10n.yml => test-l10n-beta.yml} | 6 +++--- .github/workflows/{l10n.yml => test-l10n.yml} | 0 6 files changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{check-beta-functional.yml => functional-test-beta.yml} (100%) rename .github/workflows/{check-beta.yml => smoke-test-beta.yml} (100%) rename .github/workflows/{check-devedition.yml => smoke-test-devedition.yml} (100%) rename .github/workflows/{check-beta-l10n.yml => test-l10n-beta.yml} (94%) rename .github/workflows/{l10n.yml => test-l10n.yml} (100%) diff --git a/.github/workflows/ci-dispatch.yml b/.github/workflows/ci-dispatch.yml index 077b8cf5e..63bd8755a 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: test-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: test-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: test-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/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..66a9356ca 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: test-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: test-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: test-l10n.yml with: job_to_run: L10N-Linux secrets: inherit diff --git a/.github/workflows/l10n.yml b/.github/workflows/test-l10n.yml similarity index 100% rename from .github/workflows/l10n.yml rename to .github/workflows/test-l10n.yml From d17a25b4d855cc02ba56c456e1a03d282e84e467 Mon Sep 17 00:00:00 2001 From: Arash Eghtesadi Date: Thu, 11 Dec 2025 15:10:10 -0800 Subject: [PATCH 2/3] fix file paths which was broken after refactor/rename --- .github/workflows/ci-dispatch.yml | 6 +++--- .github/workflows/test-l10n-beta.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-dispatch.yml b/.github/workflows/ci-dispatch.yml index 63bd8755a..ffb986bd4 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: test-l10n.yml + uses: ./.github/workflows/test-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: test-l10n.yml + uses: ./.github/workflows/test-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: test-l10n.yml + uses: ./.github/workflows/test-l10n.yml with: job_to_run: L10n-Linux is_pull_request: true diff --git a/.github/workflows/test-l10n-beta.yml b/.github/workflows/test-l10n-beta.yml index 66a9356ca..b639593bd 100644 --- a/.github/workflows/test-l10n-beta.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: test-l10n.yml + uses: ./.github/workflows/test-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: test-l10n.yml + uses: ./.github/workflows/test-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: test-l10n.yml + uses: ./.github/workflows/test-l10n.yml with: job_to_run: L10N-Linux secrets: inherit From 1d16fff587be9730f72c70837f5d9a43019af4b2 Mon Sep 17 00:00:00 2001 From: Arash Eghtesadi Date: Fri, 12 Dec 2025 15:08:25 -0800 Subject: [PATCH 3/3] address review comment --- .github/workflows/ci-dispatch.yml | 6 +++--- .github/workflows/{test-l10n.yml => main-l10n.yml} | 0 .github/workflows/test-l10n-beta.yml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{test-l10n.yml => main-l10n.yml} (100%) diff --git a/.github/workflows/ci-dispatch.yml b/.github/workflows/ci-dispatch.yml index ffb986bd4..03b955991 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/test-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/test-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/test-l10n.yml + uses: ./.github/workflows/main-l10n.yml with: job_to_run: L10n-Linux is_pull_request: true diff --git a/.github/workflows/test-l10n.yml b/.github/workflows/main-l10n.yml similarity index 100% rename from .github/workflows/test-l10n.yml rename to .github/workflows/main-l10n.yml diff --git a/.github/workflows/test-l10n-beta.yml b/.github/workflows/test-l10n-beta.yml index b639593bd..1a4223b91 100644 --- a/.github/workflows/test-l10n-beta.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/test-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/test-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/test-l10n.yml + uses: ./.github/workflows/main-l10n.yml with: job_to_run: L10N-Linux secrets: inherit