Skip to content

Commit

Permalink
fix(release): handle multi word component name (#1440)
Browse files Browse the repository at this point in the history
* fix(release): handle multi word component name

* Update release-trigger-builds.yml
  • Loading branch information
tuntoja authored Jun 14, 2024
1 parent 1ea67d2 commit 77f546f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-trigger-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ jobs:
if [[ "${{ inputs.dispatch_content }}" == "FULL" ]]; then
echo "Requested ${{ inputs.dispatch_content }} content, triggering all component workflows."
for COMPONENT in ${COMPONENTS_COLLECT_FULL[@]}; do
gh workflow run $COMPONENT -r ${{ inputs.dispatch_target_release_branch }}
for COMPONENT in "${COMPONENTS_COLLECT_FULL[@]}"; do
gh workflow run "$COMPONENT" -r ${{ inputs.dispatch_target_release_branch }}
done
else
echo "Requested ${{ inputs.dispatch_content }} content, triggering centreon named components only."
for COMPONENT in ${COMPONENTS_COLLECT[@]}; do
gh workflow run $COMPONENT -r ${{ inputs.dispatch_target_release_branch }}
for COMPONENT in "${COMPONENTS_COLLECT[@]}"; do
gh workflow run "$COMPONENT" -r ${{ inputs.dispatch_target_release_branch }}
done
fi
Expand Down

2 comments on commit 77f546f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass % ⏱️ Duration
6 1 0 7 85.71 3m21.167416s

Failed Tests

Name Message ⏱️ Duration Suite
EBNHGU4_BBDO2 hostgroup_1 not found in /tmp/lua-engine.log 80.845 s Hostgroups

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass % ⏱️ Duration
6 1 0 7 85.71 3m11.317402s

Failed Tests

Name Message ⏱️ Duration Suite
EBNHGU4_BBDO2 hostgroup_1 not found in /tmp/lua-engine.log 70.758 s Hostgroups

Please sign in to comment.