From 293fa7cd716e1665afdb3e7f6e2893218ffa9e67 Mon Sep 17 00:00:00 2001 From: Saad Adnan <38024451+sdadn@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:38:35 -0500 Subject: [PATCH] Update `ci-cd.yml` to allow manual running of workflows (#1814) --- .github/workflows/ci-cd.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 674e2cbe71a..3b2c44fdd28 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -8,6 +8,25 @@ on: branches: ['main'] schedule: - cron: '0 1 * * SUN' + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug + tags: + description: 'Test scenario tags' + required: false + type: boolean + environment: + description: 'Environment to run tests against' + type: environment + required: true jobs: build: