From 929dc5e6f0ab3c4fe0cb9b403da159b15d229199 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Fri, 11 Jul 2025 22:54:19 +0000 Subject: [PATCH] Fix: Satisfy merge queue check for scheduled updates (#2420) Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- .github/workflows/merge-queue.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/merge-queue.yml b/.github/workflows/merge-queue.yml index 06d268e71..a63834957 100644 --- a/.github/workflows/merge-queue.yml +++ b/.github/workflows/merge-queue.yml @@ -9,6 +9,14 @@ concurrency: cancel-in-progress: true jobs: + # New job to satisfy the required check for the merge queue + scheduled_updates: + if: github.repository == 'meshtastic/Meshtastic-Android' # Keep consistent with other jobs + runs-on: ubuntu-latest + steps: + - name: Always pass merge queue scheduled_updates check + run: echo "This check is primarily for PR entry; passing in merge queue." + build_and_detekt: if: github.repository == 'meshtastic/Meshtastic-Android' uses: ./.github/workflows/reusable-android-build.yml @@ -25,4 +33,3 @@ jobs: upload_artifacts: false secrets: GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }} -