File tree Expand file tree Collapse file tree
charts/generic-govuk-app/templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,20 +65,22 @@ jobs:
6565 DIFF=$(diff -r base/ head/)
6666
6767 if [ -z "$DIFF" ]; then
68- cat <<EOF > pr.md
69- No changes detected in rendered charts.
68+ cat <<' EOF' > pr.md
69+ No changes detected in rendered charts.
7070 EOF
7171 else
72- cat <<EOF > pr.md
73- <details>
74- <summary>Rendered charts diff</summary>
75- This PR results in the following changes to rendered charts:
72+ cat <<' EOF' > pr.md
73+ <details>
74+ <summary>Rendered charts diff</summary>
75+ This PR results in the following changes to rendered charts:
7676
77- ```diff
78- ${DIFF}
79- ```
80- </details>
77+ ```diff
8178 EOF
79+ {
80+ echo "$DIFF"
81+ echo '```'
82+ echo '</details>'
83+ } >> pr.md
8284 fi
8385
8486 gh pr comment "${{github.event.pull_request.html_url}}" --create-if-none --edit-last --body-file pr.md
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ metadata:
1010 app : {{ $fullName }}
1111 app.kubernetes.io/name : {{ $fullName }}
1212 app.kubernetes.io/component : app
13+ some-other-label : something
1314 annotations :
1415 {{- (tpl (toYaml .Values.ingress.annotations) .) | trim | nindent 4 }}
1516spec :
You can’t perform that action at this time.
0 commit comments