From 51c6ff2446e357fe3da4a0a26d969fb7de653777 Mon Sep 17 00:00:00 2001 From: Marius Date: Thu, 12 Feb 2026 14:33:01 +0100 Subject: [PATCH] reorder publish bump options to default to patch (#284) Put patch first so it's pre-selected in the workflow dispatch UI, reducing the risk of accidental major/minor releases. --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1a68878d7d..80f24896db 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,9 +15,9 @@ on: required: false type: choice options: - - major - - minor - patch + - minor + - major version: description: "Override version (optional)" required: false