Skip to content

Commit cbcac77

Browse files
authored
Fix regex escape sequence in managed-mode.md (#797)
1 parent 55a463d commit cbcac77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/managed-mode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ automations:
8080
label: 🤖 LinearB AI
8181
8282
is:
83-
bot_author: {{ pr.author | match(list=[\"github-actions\", \"_bot_\", \"[bot]\", \"dependabot\"]) | some }}
83+
bot_author: {{ pr.author | match(list=["github-actions", "_bot_", "[bot]", "dependabot"]) | some }}
8484
claude_author: {{ pr.author | lower | includes(regex=r/claude/) }}
8585
claude_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*[Cc]laude/) | some }}
8686
copilot_author: {{ pr.author | lower | includes(regex=r/copilot/) }}
8787
copilot_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*([Cc]opilot|[Gg]ithub.*[Cc]opilot)/) | some }}
8888
cursor_author: {{ pr.author | lower | includes(regex=r/cursor/) }}
8989
cursor_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*[Cc]ursor/) | some }}
9090
linearb_author: {{ pr.author | lower | includes(regex=r/^linearb/) and not (pr.author | lower | includes(regex=r/^linearbci$/)) }}
91-
linearb_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*(gitstream-cm|linearb).*\\[bot\\]/) | some }}
91+
linearb_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*(gitstream-cm|linearb).*\[bot\]/) | some }}
9292
```
9393

9494
### Estimated Time to Review

0 commit comments

Comments
 (0)