diff --git a/CHANGELOG.md b/CHANGELOG.md
index 61effe68d4a06e1213a4ed662977d1ad0c4f8a2a..4e00e8830b5558baf859a4990af83a7e4730deb7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## [0.15.2] - 2022-10-27
+
+* Allow quotes in commit message for cypress.
+
 ## [0.15.1] - 2022-10-26
 
 * Add cypress test output to pod logs
diff --git a/Chart.yaml b/Chart.yaml
index 00c6273a609540de7317c36f33758c2dba6b1622..7f42ae247829f31e7d6312b7b0b62e6d1d1e42c6 100644
--- a/Chart.yaml
+++ b/Chart.yaml
@@ -4,7 +4,7 @@ description: |
   A helm chart for installing NextCloud and setting up ONLYOFFICE integration
 name: nextcloud-onlyoffice
 appVersion: NC-24.0.5-OO-7.2.0.204
-version: 0.15.1
+version: 0.15.2
 icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg
 dependencies:
   # https://artifacthub.io/packages/helm/nextcloud/nextcloud
diff --git a/templates/tests/cypress-test-nc-oo.yaml b/templates/tests/cypress-test-nc-oo.yaml
index 748945bc0951fb84d2d8f5eff29550d6c96892ed..ac63bf1062e67d9fc949630156a8764ae6272f3d 100644
--- a/templates/tests/cypress-test-nc-oo.yaml
+++ b/templates/tests/cypress-test-nc-oo.yaml
@@ -62,11 +62,17 @@ spec:
         {{- end }}
         {{- if .Values.tests.cypress.commitInfo.message }}
         - name: COMMIT_INFO_MESSAGE
-          value: "{{ .Values.tests.cypress.commitInfo.message }}"
+          # Use yaml literal style, so we can have quotes in the string.
+          # Newlines might not be safe to include, but unlike the name suggests
+          # in Stackspin we set this value to only the commit title.
+          value: |
+            {{ .Values.tests.cypress.commitInfo.message }}
         {{- end }}
         {{- if .Values.tests.cypress.commitInfo.author }}
         - name: COMMIT_INFO_AUTHOR
-          value: "{{ .Values.tests.cypress.commitInfo.author }}"
+          # Use yaml literal style, so we can have quotes in the string.
+          value: |
+            {{ .Values.tests.cypress.commitInfo.author }}
         {{- end }}
         {{- if .Values.tests.cypress.commitInfo.sha }}
         - name: COMMIT_INFO_SHA