Skip to content

Commit 7c10f26

Browse files
authored
Update Boilerplate (flyteorg#197)
1 parent c749582 commit 7c10f26

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Comment to be posted on PRs from first-time contributors in your repository
2-
newPRWelcomeComment: >
2+
newPRWelcomeComment: |
33
Thank you for opening this pull request! 🙌
44
55
These tips will help get your PR across the finish line:
6+
67
- Most of the repos have a PR template; if not, fill it out to the best of your knowledge.
78
- Sign off your commits (Reference: [DCO Guide](https://github.com/src-d/guide/blob/master/developer-community/fix-DCO.md)).
89

boilerplate/flyte/end2end/end2end.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ pushd ${OUT}
1818
if [ ! -z "$IMAGE" ];
1919
then
2020
kind load docker-image ${IMAGE}
21-
if [ ${IMAGE_NAME} -eq "flytepropeller" ]
21+
if [ "${IMAGE_NAME}" == "flytepropeller" ]
2222
then
23-
sed -i.bak -e "s_${IMAGE_NAME}:.*_${IMAGE}_g" ${OUT}/kustomize/base/propeller/deployment.yaml
23+
sed -i.bak -e "s_${IMAGE_NAME}:.*_${IMAGE}_g" "${OUT}"/kustomize/base/propeller/deployment.yaml
2424
fi
2525

26-
if [ ${IMAGE} -eq "flyteadmin" ]
26+
if [ "${IMAGE_NAME}" == "flyteadmin" ]
2727
then
28-
sed -i.bak -e "s_${IMAGE_NAME}:.*_${IMAGE}_g" ${OUT}/kustomize/base/admindeployment/deployment.yaml
28+
sed -i.bak -e "s_${IMAGE_NAME}:.*_${IMAGE}_g" "${OUT}"/kustomize/base/admindeployment/deployment.yaml
2929
fi
3030
fi
3131

boilerplate/flyte/welcome_bot/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Comment to be posted on PRs from first-time contributors in your repository
2-
newPRWelcomeComment: >
2+
newPRWelcomeComment: |
33
Thank you for opening this pull request! 🙌
44
55
These tips will help get your PR across the finish line:
6+
67
- Most of the repos have a PR template; if not, fill it out to the best of your knowledge.
78
- Sign off your commits (Reference: [DCO Guide](https://github.com/src-d/guide/blob/master/developer-community/fix-DCO.md)).
89

0 commit comments

Comments
 (0)