Skip to content

Commit b340fbc

Browse files
authored
update default c for GH
1 parent f97d1ee commit b340fbc

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

docs/downloads/gitstream.cm

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,31 @@ manifest:
66

77

88
automations:
9-
# Add a label that indicates how many minutes it will take to review the PR.
9+
# Use LinearB's AI service to review the changes
10+
linearb_ai_review:
11+
on:
12+
- pr_created
13+
- commit
14+
if:
15+
- {{ pr.draft == false }}
16+
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
17+
run:
18+
- action: code-review@v1
19+
20+
# Use LinearB's AI service to add a description to the PR
21+
linearb_ai_description:
22+
on:
23+
- pr_created
24+
- commit
25+
if:
26+
- {{ not pr.draft }}
27+
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
28+
run:
29+
- action: describe-changes@v1
30+
args:
31+
concat_mode: append
32+
33+
# Add a label indicating how long it will take to review the PR.
1034
estimated_time_to_review:
1135
if:
1236
- true

0 commit comments

Comments
 (0)