Skip to content

Commit ccd5251

Browse files
committed
update bot match for gitlab default CM
1 parent 415fd45 commit ccd5251

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/downloads/gitStream-gl.cm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ automations:
1010
linearb_ai_review:
1111
if:
1212
- {{ not pr.draft }}
13-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
13+
- {{ IS_NOT_A_BOT }}
1414
run:
1515
- action: code-review@v1
1616

1717
# Use LinearB's AI service to add a description to the PR
1818
linearb_ai_description:
1919
if:
2020
- {{ not pr.draft }}
21-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
21+
- {{ IS_NOT_A_BOT }}
2222
run:
2323
- action: describe-changes@v1
2424
args:
@@ -73,3 +73,5 @@ colors:
7373
red: 'b60205'
7474
yellow: 'fbca04'
7575
green: '0e8a16'
76+
77+
IS_NOT_A_BOT: {{ pr.author | match(list=['_bot_', '[bot]', 'dependabot']) | nope }}

0 commit comments

Comments
 (0)