diff --git a/.github/workflows/basket-api-deploy.yml b/.github/workflows/basket-api-deploy.yml index 38c16ed2e..f4108d9cc 100644 --- a/.github/workflows/basket-api-deploy.yml +++ b/.github/workflows/basket-api-deploy.yml @@ -1,10 +1,22 @@ name: Deploy basket-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["basket-api"] branches: [dev] diff --git a/.github/workflows/catalog-api-deploy.yml b/.github/workflows/catalog-api-deploy.yml index 804469296..a1a0ce25b 100644 --- a/.github/workflows/catalog-api-deploy.yml +++ b/.github/workflows/catalog-api-deploy.yml @@ -1,10 +1,22 @@ name: Deploy catalog-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["catalog-api"] branches: [dev] diff --git a/.github/workflows/identity-api-deploy.yml b/.github/workflows/identity-api-deploy.yml index c2c0df936..421b1c6af 100644 --- a/.github/workflows/identity-api-deploy.yml +++ b/.github/workflows/identity-api-deploy.yml @@ -1,10 +1,22 @@ name: Deploy identity-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["identity-api"] branches: [dev] diff --git a/.github/workflows/mobileshoppingagg-deploy.yml b/.github/workflows/mobileshoppingagg-deploy.yml index bfe6fa967..a07de4550 100644 --- a/.github/workflows/mobileshoppingagg-deploy.yml +++ b/.github/workflows/mobileshoppingagg-deploy.yml @@ -1,10 +1,22 @@ name: Deploy mobileshoppingagg on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["mobileshoppingagg"] branches: [dev] diff --git a/.github/workflows/ordering-api-deploy.yml b/.github/workflows/ordering-api-deploy.yml index e689d06a4..b92426f5c 100644 --- a/.github/workflows/ordering-api-deploy.yml +++ b/.github/workflows/ordering-api-deploy.yml @@ -1,10 +1,22 @@ name: Deploy ordering-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["ordering-api"] branches: [dev] diff --git a/.github/workflows/ordering-backgroundtasks-deploy.yml b/.github/workflows/ordering-backgroundtasks-deploy.yml index 1b3b7245e..19b38005e 100644 --- a/.github/workflows/ordering-backgroundtasks-deploy.yml +++ b/.github/workflows/ordering-backgroundtasks-deploy.yml @@ -1,10 +1,22 @@ name: Deploy ordering-backgroundtasks on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["ordering-backgroundtasks"] branches: [dev] diff --git a/.github/workflows/ordering-signalrhub-deploy.yml b/.github/workflows/ordering-signalrhub-deploy.yml index 455cf7f1d..6e9a50b69 100644 --- a/.github/workflows/ordering-signalrhub-deploy.yml +++ b/.github/workflows/ordering-signalrhub-deploy.yml @@ -1,10 +1,22 @@ name: Deploy ordering-signalrhub on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["ordering-signalrhub"] branches: [dev] diff --git a/.github/workflows/payment-api-deploy.yml b/.github/workflows/payment-api-deploy.yml index 2f37988ed..996a7539e 100644 --- a/.github/workflows/payment-api-deploy.yml +++ b/.github/workflows/payment-api-deploy.yml @@ -1,10 +1,22 @@ name: Deploy payment-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["payment-api"] branches: [dev] diff --git a/.github/workflows/webhooks-api-deploy.yml b/.github/workflows/webhooks-api-deploy.yml index 4d74a38e6..48dbad999 100644 --- a/.github/workflows/webhooks-api-deploy.yml +++ b/.github/workflows/webhooks-api-deploy.yml @@ -1,10 +1,22 @@ name: Deploy webhooks-api on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["webhooks-api"] branches: [dev] diff --git a/.github/workflows/webmvc-deploy.yml b/.github/workflows/webmvc-deploy.yml index e70cefed2..b8e2f05b4 100644 --- a/.github/workflows/webmvc-deploy.yml +++ b/.github/workflows/webmvc-deploy.yml @@ -1,10 +1,22 @@ name: Deploy webmvc on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["webmvc"] branches: [dev] diff --git a/.github/workflows/webshoppingagg-deploy.yml b/.github/workflows/webshoppingagg-deploy.yml index 2b4bcaf12..f18fb9cc2 100644 --- a/.github/workflows/webshoppingagg-deploy.yml +++ b/.github/workflows/webshoppingagg-deploy.yml @@ -1,10 +1,22 @@ name: Deploy webshoppingagg on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["webshoppingagg"] branches: [dev] diff --git a/.github/workflows/webspa-deploy.yml b/.github/workflows/webspa-deploy.yml index 2851f6962..e7aee4ab6 100644 --- a/.github/workflows/webspa-deploy.yml +++ b/.github/workflows/webspa-deploy.yml @@ -1,10 +1,22 @@ name: Deploy webspa on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["webspa"] branches: [dev] diff --git a/.github/workflows/webstatus-deploy.yml b/.github/workflows/webstatus-deploy.yml index 866a46a5f..fd527a76b 100644 --- a/.github/workflows/webstatus-deploy.yml +++ b/.github/workflows/webstatus-deploy.yml @@ -1,10 +1,22 @@ name: Deploy webstatus on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'execution name' + # Default value if no value is explicitly provided + default: 'Manual End to End Deployment' + # Input has to be provided for the workflow to run + required: false + repository_dispatch: types: - deploy + workflow_run: workflows: ["webstatus"] branches: [dev]