We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ec804e commit b9a8860Copy full SHA for b9a8860
1 file changed
.github/workflows/validate_kong_image_trigger_via_label.yaml
@@ -64,7 +64,7 @@ jobs:
64
BODY: ${{ github.event.issue.body }}
65
# Fail the job if we cannot get "### Container image" keyword from issue body.
66
run: |
67
- kong_container_image=$(echo ${{ env.BODY }} | grep -A 2 '### Container image' | tail -n 1) && \
+ kong_container_image=$(echo "${{ env.BODY }}" | grep -A 2 '### Container image' | tail -n 1) && \
68
echo "TEST_KONG_CONTAINER_IMAGE=${kong_container_image}" >> $GITHUB_ENV
69
70
# Split the container into repo and tag by ":" and then extract the first 3 segments of tags as its version.
0 commit comments