File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,31 @@ manifest:
66
77
88automations :
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
You can’t perform that action at this time.
0 commit comments