From 81b0e4a78435067f7fadb0b45a89e7784cdeeeef Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 19 Nov 2023 22:41:13 +0000 Subject: [PATCH] fix(build): do not require inputs which have defaults --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a148c52..f4afd29 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,16 +44,17 @@ on: inputs: git_ref: description: Emacs git ref to build - required: true + required: false default: "master" type: string git_sha: description: Override Emacs git commit SHA to build required: false + default: "" type: string builder_ref: description: "Git ref to checkout of build-emacs-for-macos" - required: true + required: false default: "master" type: string builder_args: @@ -63,7 +64,7 @@ on: type: string os: description: 'Runner OS ("macos-11", "macos-12", or "macos-latest")' - required: true + required: false default: "macos-11" type: string test_build_name: