diff --git a/.github/workflows/catalog-api.yml b/.github/workflows/catalog-api.yml index ca05a56ea..53892126a 100644 --- a/.github/workflows/catalog-api.yml +++ b/.github/workflows/catalog-api.yml @@ -1,6 +1,16 @@ name: catalog-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/identity-api.yml b/.github/workflows/identity-api.yml index b57c8151b..aff12e8a9 100644 --- a/.github/workflows/identity-api.yml +++ b/.github/workflows/identity-api.yml @@ -1,6 +1,16 @@ name: identity-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/mobileshoppingagg.yml b/.github/workflows/mobileshoppingagg.yml index 2de0c0370..b565fc409 100644 --- a/.github/workflows/mobileshoppingagg.yml +++ b/.github/workflows/mobileshoppingagg.yml @@ -1,6 +1,16 @@ name: mobileshoppingagg on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/ordering-api.yml b/.github/workflows/ordering-api.yml index 5adec0760..6bf5a2fdf 100644 --- a/.github/workflows/ordering-api.yml +++ b/.github/workflows/ordering-api.yml @@ -1,6 +1,16 @@ name: ordering-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/ordering-backgroundtasks.yml b/.github/workflows/ordering-backgroundtasks.yml index f8f7badfa..87eeb26de 100644 --- a/.github/workflows/ordering-backgroundtasks.yml +++ b/.github/workflows/ordering-backgroundtasks.yml @@ -1,6 +1,16 @@ name: ordering-backgroundtasks on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/ordering-signalrhub.yml b/.github/workflows/ordering-signalrhub.yml index 564a81458..d95fc688d 100644 --- a/.github/workflows/ordering-signalrhub.yml +++ b/.github/workflows/ordering-signalrhub.yml @@ -1,6 +1,16 @@ name: ordering-signalrhub on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/payment-api.yml b/.github/workflows/payment-api.yml index 3cd18756f..c12b98dd5 100644 --- a/.github/workflows/payment-api.yml +++ b/.github/workflows/payment-api.yml @@ -1,6 +1,16 @@ name: payment-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/webhooks-api.yml b/.github/workflows/webhooks-api.yml index f39599d40..96b5ec4c0 100644 --- a/.github/workflows/webhooks-api.yml +++ b/.github/workflows/webhooks-api.yml @@ -1,6 +1,16 @@ name: webhooks-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/webhooks-client.yml b/.github/workflows/webhooks-client.yml index 6851921fe..7c0080a4a 100644 --- a/.github/workflows/webhooks-client.yml +++ b/.github/workflows/webhooks-client.yml @@ -1,6 +1,16 @@ name: webhooks-client on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/webmvc.yml b/.github/workflows/webmvc.yml index 9fc0cdf86..acf2d267d 100644 --- a/.github/workflows/webmvc.yml +++ b/.github/workflows/webmvc.yml @@ -1,6 +1,16 @@ name: webmvc on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/webshoppingagg.yml b/.github/workflows/webshoppingagg.yml index 6c6df5dbb..ba3e9c7ce 100644 --- a/.github/workflows/webshoppingagg.yml +++ b/.github/workflows/webshoppingagg.yml @@ -1,6 +1,16 @@ name: webshoppingagg on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/webspa.yml b/.github/workflows/webspa.yml index 3dbc3c496..58470e2af 100644 --- a/.github/workflows/webspa.yml +++ b/.github/workflows/webspa.yml @@ -1,6 +1,16 @@ name: webspa on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev diff --git a/.github/workflows/webstatus.yml b/.github/workflows/webstatus.yml index 05d941cf2..d43d531a2 100644 --- a/.github/workflows/webstatus.yml +++ b/.github/workflows/webstatus.yml @@ -1,6 +1,16 @@ name: webstatus on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'exec name' + # Default value if no value is explicitly provided + default: 'default execution' + # Input has to be provided for the workflow to run + required: false push: branches: - dev