From e17a88ac7bb3ddb9431edacf9122dd5bc723720f Mon Sep 17 00:00:00 2001 From: Petr Ruzicka Date: Thu, 30 Dec 2021 08:28:36 +0100 Subject: [PATCH] Add choice to GH Action build pipeline (#348) --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a0f47f9e..6f77a9f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,20 +8,37 @@ on: default: all my_windows-10-enterprise-x64-eval-libvirt ubuntu-20.04-desktop-amd64-virtualbox required: true PACKER_LOG: + type: choice description: PACKER_LOG (0, 1) default: "0" + options: + - "0" + - "1" required: false ANSIBLE_DEBUG: + type: choice description: ANSIBLE_DEBUG (true, false) default: "false" + options: + - "false" + - "true" required: false VAGRANT_LOG: + type: choice description: VAGRANT_LOG (debug, info, warn) default: "warn" + options: + - "warn" + - "info" + - "debug" required: false build_upload: + type: choice description: Upload release to Vagrant Cloud default: "false" + options: + - "false" + - "true" required: false schedule: - cron: '0 0 1 * *'