Skip to content

Commit 2282779

Browse files
committed
update github defition for matching bots in default CM
1 parent ccd5251 commit 2282779

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/downloads/gitstream.cm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ automations:
1313
- commit
1414
if:
1515
- {{ not pr.draft }}
16-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
16+
- {{ IS_NOT_A_BOT }}
1717
run:
1818
- action: code-review@v1
1919

@@ -24,7 +24,7 @@ automations:
2424
- commit
2525
if:
2626
- {{ not pr.draft }}
27-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
27+
- {{ IS_NOT_A_BOT }}
2828
run:
2929
- action: describe-changes@v1
3030
args:
@@ -83,3 +83,5 @@ colors:
8383
red: 'b60205'
8484
yellow: 'fbca04'
8585
green: '0e8a16'
86+
87+
IS_NOT_A_BOT: {{ pr.author | match(list=['github-actions', '_bot_', '[bot]', 'dependabot']) | nope }}

0 commit comments

Comments
 (0)