From 253a3d1e6a8944130e3bdee8ff40909fd0813783 Mon Sep 17 00:00:00 2001 From: Charlie Sharpsteen Date: Wed, 8 Jul 2026 07:05:15 -0500 Subject: [PATCH] Clarify description of workflow "branch" input This commit re-works the description of the `branch` input to `build.yaml` to clarify what it controls and moves that input next to the `platform_list` that sets overrides for it. Signed-off-by: Charlie Sharpsteen --- .github/workflows/build.yml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ddc5580c..da978dd2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,8 +18,20 @@ on: - agent-runtime-8.x - openbolt-runtime default: 'agent-runtime-main' + branch: + description: >- + The default platform list to build for. Use `main` for 9.x builds + and `8.x` for 8.x builds. + type: choice + options: + - main + - '8.x' + default: 'main' platform_list: - description: 'A comma-separated list of platforms to build for. Do not include spaces. If not provided, will use the default list of platform supported by OpenVox.' + description: >- + Comma-separated list of platforms to build for. Do not include + spaces. If not provided, will use the default platform list chosen + above. required: false type: string vanagon_branch: @@ -37,13 +49,6 @@ on: required: false type: boolean default: false - branch: - description: 'The release branch to build from.' - type: choice - options: - - main - - '8.x' - default: 'main' jobs: build: