Update pom.xml #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a parent workflow | |
# It will trigger the reusable workflow and pass the input parameters to it | |
name: Build, Test and Deploy to DEV | |
on: | |
# Triggers the workflow on push | |
push: | |
branches: | |
- develop | |
# Allows you to run this workflow manually from the Actions tab with input parameters | |
workflow_dispatch: | |
inputs: | |
workerSize: | |
description: 'Size of Mule Worker' | |
required: true | |
type: choice | |
options: | |
- '0.1' | |
- '0.2' | |
- '0.5' | |
default: '0.1' | |
workerCount: | |
description: 'Number of Mule Workers' | |
required: true | |
type: choice | |
options: | |
- '1' | |
- '2' | |
- '3' | |
- '4' | |
default: '1' | |
jobs: | |
workflow: | |
# Make sure to add the right path to the reusable workflow. | |
# {organization}/{repository}/.github/workflows/{workflow_file_name}.yml@{branch} | |
uses: muletalks/reusable-workflows/.github/workflows/dev-reusable-workflow.yml@master | |
secrets: inherit | |
with: | |
workerSize: ${{ inputs.workerSize }} | |
workerCount: ${{ inputs.workerCount }} |