Skip to content

Commit 03647da

Browse files
committed
fixes: add _bot_ and remove draft from bb
1 parent ab62b5a commit 03647da

File tree

8 files changed

+8
-10
lines changed

8 files changed

+8
-10
lines changed

docs/automation-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ automations:
298298
- commit
299299
if:
300300
- {{ not pr.draft }}
301-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
301+
- {{ pr.author | match(list=['github-actions', '_bot_', 'dependabot', '[bot]']) | nope }}
302302
run:
303303
- action: code-review@v1
304304
args:
@@ -385,7 +385,7 @@ automations:
385385
# skip description for Draft PRs and PRs from bots
386386
if:
387387
- {{ not pr.draft }}
388-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
388+
- {{ pr.author | match(list=['github-actions', '_bot_', 'dependabot', '[bot]']) | nope }}
389389
run:
390390
- action: describe-changes@v1
391391
args:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ automations:
55
linearb_ai_review:
66
if:
77
- {{ not pr.draft }}
8-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
8+
- {{ pr.author | match(list=['github-actions', '_bot_', 'dependabot', '[bot]']) | nope }}
99
run:
1010
- action: code-review@v1
1111
args:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ automations:
55
linearb_ai_review:
66
if:
77
- {{ not pr.draft }}
8-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
8+
- {{ pr.author | match(list=['github-actions', '_bot_', 'dependabot', '[bot]']) | nope }}
99
run:
1010
- action: code-review@v1
1111
args:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ automations:
99
- commit
1010
if:
1111
- {{ not pr.draft }}
12-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
12+
- {{ pr.author | match(list=['github-actions', '_bot_', 'dependabot', '[bot]']) | nope }}
1313
run:
1414
- action: code-review@v1
1515
args:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ automations:
66
# skip description for Draft PRs and PRs from bots
77
if:
88
- {{ not pr.draft }}
9-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
9+
- {{ pr.author | match(list=['github-actions', '_bot_', 'dependabot', '[bot]']) | nope }}
1010
run:
1111
- action: describe-changes@v1
1212
args:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ automations:
66
# skip description for Draft PRs and PRs from bots
77
if:
88
- {{ not pr.draft }}
9-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
9+
- {{ pr.author | match(list=['github-actions', '_bot_', 'dependabot', '[bot]']) | nope }}
1010
run:
1111
- action: describe-changes@v1
1212
args:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ automations:
1111
# skip description for Draft PRs and PRs from bots
1212
if:
1313
- {{ not pr.draft }}
14-
- {{ pr.author | match(list=['github-actions', 'dependabot', '[bot]']) | nope }}
14+
- {{ pr.author | match(list=['github-actions', '_bot_', 'dependabot', '[bot]']) | nope }}
1515
run:
1616
- action: describe-changes@v1
1717
args:

docs/downloads/gitstream-bb.cm

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ automations:
99
# Use LinearB's AI service to review the changes
1010
linearb_ai_review:
1111
if:
12-
- {{ not pr.draft }}
1312
- {{ not is.bot }}
1413
run:
1514
- action: code-review@v1
@@ -19,7 +18,6 @@ automations:
1918
# Use LinearB's AI service to add a description to the PR
2019
linearb_ai_description:
2120
if:
22-
- {{ not pr.draft }}
2321
- {{ not is.bot }}
2422
run:
2523
- action: describe-changes@v1

0 commit comments

Comments
 (0)