From 7eebcacb36af1ced939cd3a330d10b89e8d09f83 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Thu, 14 Aug 2025 17:18:29 -0500 Subject: [PATCH] chore(ci): back out pr workflow change Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- .github/workflows/pull-request.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 7a41833a9..eb2b8b7c4 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -5,13 +5,6 @@ on: branches: - main workflow_dispatch: - inputs: - branch: - description: 'Branch to run checks against' - required: true - default: 'main' - type: string - concurrency: group: build-pr-${{ github.ref }} @@ -20,13 +13,13 @@ concurrency: jobs: build_and_detekt: - if: github.repository == 'meshtastic/Meshtastic-Android' && github.head_ref != 'scheduled-updates' && github.head.ref != 'l10n_main' + if: github.repository == 'meshtastic/Meshtastic-Android' && github.head_ref != 'scheduled-updates' 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' && github.head.ref != 'l10n_main' + if: github.repository == 'meshtastic/Meshtastic-Android' && github.head_ref != 'scheduled-updates' uses: ./.github/workflows/reusable-android-test.yml with: api_levels: '[35]' # Run only on API 35 for PRs