From f9bc68ee4434584f79722d2aa8e3f8d65be02a13 Mon Sep 17 00:00:00 2001 From: abdulmohsen Date: Wed, 15 Nov 2023 20:25:07 +0300 Subject: [PATCH] Added option to manually trigger build --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b2de3db9..8f663ec7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,17 @@ name: Build Container Images on: + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug push: branches: - '*'