From 6a397cab89455b624ed5ebf8f35f5a9465839c75 Mon Sep 17 00:00:00 2001 From: Ioana Risteiu Date: Thu, 12 Mar 2026 13:53:44 +0200 Subject: [PATCH] .github/workflows: build gmsl kuiper image GitHub workflow_dispatch API requires the workflow file to exist on the default branch. This file is a placeholder to satisfy the requirement and the actual workflow logic is on the gmsl-rpi-6.13.y branch. Signed-off-by: Ioana Risteiu --- .github/workflows/gmsl-image-build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/gmsl-image-build.yml diff --git a/.github/workflows/gmsl-image-build.yml b/.github/workflows/gmsl-image-build.yml new file mode 100644 index 00000000..b20bd208 --- /dev/null +++ b/.github/workflows/gmsl-image-build.yml @@ -0,0 +1,14 @@ +name: GMSL Kuiper Image Build +on: + workflow_dispatch: + inputs: + linux_run_id: + description: 'Run ID of the linux kernel build workflow' + required: true + type: string + +jobs: + build: + runs-on: ubuntu-latest + steps: + - run: echo "Start Kuiper Image Build." \ No newline at end of file