Skip to content

Commit 7a05b9e

Browse files
authored
Merge branch 'main' into improve-triggers-for-dependabot-bump
2 parents 8c0225b + 46e4bfc commit 7a05b9e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

docs/troubleshooting.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,17 @@ Clicking the `Details` button will show more information and context.
129129

130130
You can add this automation to see details on context variable.
131131

132+
#### gitStream fails when using template strings with special characters (e.g., colon ':')
133+
134+
If a template string (e.g., pull request title, description, or other context variables) contains special characters such as a colon (`:`), gitStream might fail with a YAML parsing error due to invalid syntax.
135+
136+
To resolve this issue, ensure you properly escape special characters by using Nunjucks multiline strings. For example:
137+
138+
```yaml+jinja
139+
comment: |
140+
{{ pr.title }}
141+
```
142+
132143
## How can I debug expressions and see their content?
133144

134145
You can dump any context value to the PR comment. For example, to see the list of changed files, use:

0 commit comments

Comments
 (0)