We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58edfb2 commit 87f8a79Copy full SHA for 87f8a79
.github/workflows/preview-readme.yaml
@@ -27,7 +27,7 @@ jobs:
27
with:
28
git-push: false
29
output-file: ../../README.md
30
- template-file: ../../README.md.gotmpl
+ template-files: ../../README.md.gotmpl
31
32
- name: Check for README changes
33
id: check-changes
@@ -84,6 +84,7 @@ jobs:
84
github-token: ${{ secrets.GITHUB_TOKEN }}
85
script: |
86
const diff = `${{ steps.diff.outputs.diff }}`;
87
+ // Use 4 backticks for the outer fence to safely contain any triple backticks in the diff
88
const body = `<!-- helm-docs-preview -->
89
## 📝 README.md Preview
90
@@ -92,9 +93,9 @@ jobs:
92
93
<details>
94
<summary>Click to expand diff</summary>
95
- \`\`\`diff
96
+ \`\`\`\`diff
97
${diff}
- \`\`\`
98
+ \`\`\`\`
99
100
</details>
101
0 commit comments