From 69b2a6229cc51c1b87107d87636ac663b6972dd8 Mon Sep 17 00:00:00 2001 From: DaneEvans Date: Fri, 15 Aug 2025 19:18:15 +1000 Subject: [PATCH] add new crowdIn branch to the bypass list (#2736) --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index eb2b8b7c4..1bf85cde3 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -13,13 +13,13 @@ concurrency: jobs: build_and_detekt: - if: github.repository == 'meshtastic/Meshtastic-Android' && github.head_ref != 'scheduled-updates' + if: github.repository == 'meshtastic/Meshtastic-Android' && !( github.head_ref == 'scheduled-updates' || github.head_ref == 'l10n_main' ) uses: ./.github/workflows/reusable-android-build.yml secrets: inherit androidTest: # Assuming androidTest should also only run for the main repository - if: github.repository == 'meshtastic/Meshtastic-Android' && github.head_ref != 'scheduled-updates' + if: github.repository == 'meshtastic/Meshtastic-Android' && !( github.head_ref == 'scheduled-updates' || github.head_ref == 'l10n_main' ) uses: ./.github/workflows/reusable-android-test.yml with: api_levels: '[35]' # Run only on API 35 for PRs