ci(backend): adding default parameter value for workflow dispatch
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
parent
fcc8758f45
commit
ea334f0e78
2 changed files with 4 additions and 2 deletions
3
.github/workflows/workers-ee.yaml
vendored
3
.github/workflows/workers-ee.yaml
vendored
|
|
@ -59,8 +59,9 @@ jobs:
|
|||
#
|
||||
# Getting the images to build
|
||||
#
|
||||
build_param=${${{ github.event.inputs.build_service }}:-'false'}
|
||||
set -x
|
||||
case ${{ github.event.inputs.build_service }} in
|
||||
case ${build_param} in
|
||||
false)
|
||||
{
|
||||
git diff --name-only HEAD HEAD~1 | grep -E "backend/cmd|backend/services" | grep -vE ^ee/ | cut -d '/' -f3
|
||||
|
|
|
|||
3
.github/workflows/workers.yaml
vendored
3
.github/workflows/workers.yaml
vendored
|
|
@ -59,8 +59,9 @@ jobs:
|
|||
#
|
||||
# Getting the images to build
|
||||
#
|
||||
build_param=${${{ github.event.inputs.build_service }}:-'false'}
|
||||
set -x
|
||||
case ${{ github.event.inputs.build_service }} in
|
||||
case ${build_param} in
|
||||
false)
|
||||
{
|
||||
git diff --name-only HEAD HEAD~1 | grep -E "backend/cmd|backend/services" | grep -vE ^ee/ | cut -d '/' -f3
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue