Skip to content

Commit f541175

Browse files
authored
Merge pull request #669 from linear-b/add-linearBAI-to-defaults
landing page edits
2 parents 74742e1 + a5f96c5 commit f541175

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-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+
- {{ not pr.draft }}
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

docs/index.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ description: YAML-based workflow automation for the code review process.
44
---
55
# /:\ gitStream
66
gitStream is a workflow automation tool that enables you to use YAML configuration files to optimize your code review process. Add context to PRs, find code experts for reviews, and automate the merge process to maximize developer productivity.
7+
8+
## AI-Powered Productivity with LinearB's AI :material-star-circle:
9+
10+
Enhance your pull request experience with our new AI capabilities using LinearB's AI services. Automatically generate PR descriptions, perform comprehensive code reviews, and more to improve efficiency and productivity.
11+
12+
!!! quote ""
13+
![summarized-pr](/automations/integrations/LinearBAI/describe-pr/LinearB-AI-describe-pr.png){: style="border-radius:4px;width:50%", align=right}
14+
15+
**Add PR Description Using LinearB's AI**
16+
17+
Automatically generate and append a concise, [AI-generated description](automations/integrations/LinearBAI/describe-pr) to a pull request to ensure all PRs include meaningful and helpful descriptions, improving review efficiency.
18+
19+
!!! quote ""
20+
![code-review](/automations/integrations/LinearBAI/code-review/LinearB-AI-code-review.png){: style="border-radius:4px;width:50%", align=left}
21+
22+
**Use LinearB's AI for a Comprehensive Code Review**
23+
24+
Leverage LinearB's AI to [automatically review](automations/integrations/LinearBAI/code-review) introduced changes to the code, ensuring high-quality code reviews and reducing the manual effort required.
25+
726
## Features
827

928
!!! quote ""

0 commit comments

Comments
 (0)