Skip to content

Commit 899e078

Browse files
authored
Merge pull request #674 from linear-b/linearb-ai-fixes
LINBEE-15412 align linearb ai docs
2 parents 689153c + 64120da commit 899e078

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/automation-actions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,12 +325,12 @@ The action automatically analyzes the code modifications to create a clear, high
325325

326326
```yaml+jinja title="example"
327327
automations:
328-
pr_description:
329-
# trigger it only when PR is created or has new commits.
328+
linearb_ai_description:
329+
# trigger it only when PR is created or has new commits
330330
on:
331331
- pr_created
332332
- commit
333-
# Skip description for Draft PRs and PRs from bots.
333+
# skip description for Draft PRs and PRs from bots
334334
if:
335335
- {{ not pr.draft }}
336336
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}

docs/downloads/automation-library/integrations/LinearBAI/code-review.cm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ automations:
77
- pr_created
88
- commit
99
if:
10-
- {{ pr.draft == false }}
10+
- {{ not pr.draft }}
1111
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
1212
run:
1313
- action: code-review@v1

docs/downloads/automation-library/integrations/LinearBAI/describe-pr.cm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ manifest:
22
version: 1.0
33

44
automations:
5-
pr_description:
6-
# trigger it only when PR is created or has new commits.
5+
linearb_ai_description:
6+
# trigger it only when PR is created or has new commits
77
on:
88
- pr_created
99
- commit
10-
# Skip description for Draft PRs and PRs from bots.
10+
# skip description for Draft PRs and PRs from bots
1111
if:
1212
- {{ not pr.draft }}
1313
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}

0 commit comments

Comments
 (0)