Browse Source

added manual trigger to all deploy yml files

pull/1761/head
Zannely Rodriguez 3 years ago
parent
commit
72cfaea4a3
13 changed files with 156 additions and 0 deletions
  1. +12
    -0
      .github/workflows/basket-api-deploy.yml
  2. +12
    -0
      .github/workflows/catalog-api-deploy.yml
  3. +12
    -0
      .github/workflows/identity-api-deploy.yml
  4. +12
    -0
      .github/workflows/mobileshoppingagg-deploy.yml
  5. +12
    -0
      .github/workflows/ordering-api-deploy.yml
  6. +12
    -0
      .github/workflows/ordering-backgroundtasks-deploy.yml
  7. +12
    -0
      .github/workflows/ordering-signalrhub-deploy.yml
  8. +12
    -0
      .github/workflows/payment-api-deploy.yml
  9. +12
    -0
      .github/workflows/webhooks-api-deploy.yml
  10. +12
    -0
      .github/workflows/webmvc-deploy.yml
  11. +12
    -0
      .github/workflows/webshoppingagg-deploy.yml
  12. +12
    -0
      .github/workflows/webspa-deploy.yml
  13. +12
    -0
      .github/workflows/webstatus-deploy.yml

+ 12
- 0
.github/workflows/basket-api-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/catalog-api-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/identity-api-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/mobileshoppingagg-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/ordering-api-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/ordering-backgroundtasks-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/ordering-signalrhub-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/payment-api-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/webhooks-api-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/webmvc-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/webshoppingagg-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/webspa-deploy.yml View File

@ -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]


+ 12
- 0
.github/workflows/webstatus-deploy.yml View File

@ -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]


Loading…
Cancel
Save