Browse Source

Merge pull request #4 from Pantalones411/feature/CICD

Update build to allow manual execution
pull/1657/head
Pantalones411 3 years ago
committed by GitHub
parent
commit
a34bbb92c0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 130 additions and 0 deletions
  1. +10
    -0
      .github/workflows/catalog-api.yml
  2. +10
    -0
      .github/workflows/identity-api.yml
  3. +10
    -0
      .github/workflows/mobileshoppingagg.yml
  4. +10
    -0
      .github/workflows/ordering-api.yml
  5. +10
    -0
      .github/workflows/ordering-backgroundtasks.yml
  6. +10
    -0
      .github/workflows/ordering-signalrhub.yml
  7. +10
    -0
      .github/workflows/payment-api.yml
  8. +10
    -0
      .github/workflows/webhooks-api.yml
  9. +10
    -0
      .github/workflows/webhooks-client.yml
  10. +10
    -0
      .github/workflows/webmvc.yml
  11. +10
    -0
      .github/workflows/webshoppingagg.yml
  12. +10
    -0
      .github/workflows/webspa.yml
  13. +10
    -0
      .github/workflows/webstatus.yml

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

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


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

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


+ 10
- 0
.github/workflows/mobileshoppingagg.yml View File

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


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

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


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

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


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

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


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

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


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

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


+ 10
- 0
.github/workflows/webhooks-client.yml View File

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


+ 10
- 0
.github/workflows/webmvc.yml View File

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


+ 10
- 0
.github/workflows/webshoppingagg.yml View File

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


+ 10
- 0
.github/workflows/webspa.yml View File

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


+ 10
- 0
.github/workflows/webstatus.yml View File

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


Loading…
Cancel
Save