From aa37cad995c775dc217089ca407e2f4932d7ab1f Mon Sep 17 00:00:00 2001 From: Maurizio Cacace Date: Wed, 4 Jan 2023 15:51:31 +0100 Subject: [PATCH] AAE-11910 - add a workflow_dispatch to execute manually adf tests from gha GUI (#8098) * add workflow_dispatch on adf workflow * add workflow_dispatch on adf workflow --- .github/workflows/adf_alpha.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/adf_alpha.yml diff --git a/.github/workflows/adf_alpha.yml b/.github/workflows/adf_alpha.yml new file mode 100644 index 0000000000..91310dde65 --- /dev/null +++ b/.github/workflows/adf_alpha.yml @@ -0,0 +1,23 @@ +name: "alpha-adf" + +on: + workflow_call: + workflow_dispatch: + inputs: + cluster_operation: + description: trigger adf test + type: choice + required: true + options: + - TRIGGER_ALPHA_ADF + default: TRIGGER_ALPHA_ADF + +jobs: + trigger_adf: + name: trigger adf test + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + fetch-depth: 0