Skip to content

Commit 46e4bfc

Browse files
authored
Merge pull request #698 from linear-b/troubleshooting-fixes
added troubleshooting
2 parents b0532e1 + 8c8ed60 commit 46e4bfc

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)