From 489e1a641558a2b379f686c7c71f75c1065b689d Mon Sep 17 00:00:00 2001 From: Ofer Affias Date: Sun, 19 Oct 2025 12:29:21 +0300 Subject: [PATCH] Fix regex escape sequence in `managed-mode.md` --- docs/managed-mode.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/managed-mode.md b/docs/managed-mode.md index 8a0471ef..da708f45 100644 --- a/docs/managed-mode.md +++ b/docs/managed-mode.md @@ -77,7 +77,7 @@ automations: label: 🤖 LinearB AI is: - bot_author: {{ pr.author | match(list=[\"github-actions\", \"_bot_\", \"[bot]\", \"dependabot\"]) | some }} + bot_author: {{ pr.author | match(list=["github-actions", "_bot_", "[bot]", "dependabot"]) | some }} claude_author: {{ pr.author | lower | includes(regex=r/claude/) }} claude_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*[Cc]laude/) | some }} copilot_author: {{ pr.author | lower | includes(regex=r/copilot/) }} @@ -85,7 +85,7 @@ is: cursor_author: {{ pr.author | lower | includes(regex=r/cursor/) }} cursor_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*[Cc]ursor/) | some }} linearb_author: {{ pr.author | lower | includes(regex=r/^linearb/) and not (pr.author | lower | includes(regex=r/^linearbci$/)) }} - linearb_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*(gitstream-cm|linearb).*\\[bot\\]/) | some }} + linearb_co_author: {{ branch.commits.messages | match(regex=r/[Cc]o-[Aa]uthored-[Bb]y:.*(gitstream-cm|linearb).*\[bot\]/) | some }} ``` ### Estimated Time to Review