From d4b49ccd008218d15697a4682ff70b33f4820d43 Mon Sep 17 00:00:00 2001 From: Charlie Sharpsteen Date: Wed, 20 May 2026 12:10:21 -0400 Subject: [PATCH] Clarify "ref" description in GitHub build workflow This commit updates the description of the `ref` input in `build.yml` to indicate that pre-release builds can be produced by providing a branch or other git ref instead of a tag. Signed-off-by: Charlie Sharpsteen --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d9532fc0..e7a9a7686 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ on: workflow_dispatch: inputs: ref: - description: 'Tag to build' + description: 'Tag to build for a release, or branch to build for a pre-release' required: true project_name: description: 'The vanagon project to build'