Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/downloads/gitStream-gl.cm
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ automations:
linearb_ai_review:
if:
- {{ not pr.draft }}
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
- {{ IS_NOT_A_BOT }}
run:
- action: code-review@v1

# Use LinearB's AI service to add a description to the PR
linearb_ai_description:
if:
- {{ not pr.draft }}
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
- {{ IS_NOT_A_BOT }}
run:
- action: describe-changes@v1
args:
Expand Down Expand Up @@ -73,3 +73,5 @@ colors:
red: 'b60205'
yellow: 'fbca04'
green: '0e8a16'

IS_NOT_A_BOT: {{ pr.author | match(list=['_bot_', '[bot]', 'dependabot']) | nope }}
6 changes: 4 additions & 2 deletions docs/downloads/gitstream.cm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ automations:
- commit
if:
- {{ not pr.draft }}
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
- {{ IS_NOT_A_BOT }}
run:
- action: code-review@v1

Expand All @@ -24,7 +24,7 @@ automations:
- commit
if:
- {{ not pr.draft }}
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
- {{ IS_NOT_A_BOT }}
run:
- action: describe-changes@v1
args:
Expand Down Expand Up @@ -83,3 +83,5 @@ colors:
red: 'b60205'
yellow: 'fbca04'
green: '0e8a16'

IS_NOT_A_BOT: {{ pr.author | match(list=['github-actions', '_bot_', '[bot]', 'dependabot']) | nope }}