From a9cea6bd779d76122b0355d6792c78c64c40501d Mon Sep 17 00:00:00 2001 From: aboyko Date: Thu, 6 Jul 2023 20:25:49 -0400 Subject: [PATCH] Provide type for inputs for re-usable workflow --- .github/workflows/eclipse-distro-build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/eclipse-distro-build.yml b/.github/workflows/eclipse-distro-build.yml index 7509d8a11..1e4f096d6 100644 --- a/.github/workflows/eclipse-distro-build.yml +++ b/.github/workflows/eclipse-distro-build.yml @@ -1,17 +1,23 @@ name: Eclipse Distro STS Build on: -# workflow_dispatch: + workflow_dispatch: workflow_call: inputs: eclipse_profile: description: Eclipse profile 'e428' etc required: true default: 'e428' + type: string build_type: description: Build type such as 'snapshot', 'milestone' or 'release' required: true default: 'snapshot' + type: choice + options: + - snapshot + - milestone + - release jobs: