From bf051117936a8c9d579be9177bd13e52adb7c5de Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Sun, 25 Jan 2026 11:20:08 +0100 Subject: [PATCH 1/2] CI: Make ref optional When not set, GitHub will automatically checkout the ref from the PR. --- .github/workflows/build_vanagon.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_vanagon.yml b/.github/workflows/build_vanagon.yml index eb8a05f..55a9a94 100644 --- a/.github/workflows/build_vanagon.yml +++ b/.github/workflows/build_vanagon.yml @@ -4,8 +4,8 @@ on: workflow_call: inputs: ref: - description: 'Tag to build' - required: true + description: 'Git ref to build' + required: false type: string project_name: description: 'The vanagon project to build' From a4e1a0ee611b79ea1454779e850d77a00125cd0d Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Sun, 25 Jan 2026 11:23:21 +0100 Subject: [PATCH 2/2] CI: set correct name for step --- .github/workflows/build_vanagon.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_vanagon.yml b/.github/workflows/build_vanagon.yml index 55a9a94..81b0a4d 100644 --- a/.github/workflows/build_vanagon.yml +++ b/.github/workflows/build_vanagon.yml @@ -171,7 +171,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - - name: Checkout code at tag + - name: Checkout code uses: actions/checkout@v6 with: ref: ${{ inputs.ref }}