We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e25646 commit 6c64948Copy full SHA for 6c64948
1 file changed
docs/automation-actions.md
@@ -378,6 +378,21 @@ is:
378
bot_branch: {{ branch.name | match(list=['renovate/']) | some }}
379
```
380
381
+This example shows how to combine organization-level and repository-level guidelines.
382
+
383
+```yaml+jinja title="example - combined org + repo guidelines"
384
+automations:
385
+ linearb_ai_review:
386
+ if:
387
+ - true
388
+ run:
389
+ - action: code-review@v1
390
+ args:
391
+ guidelines: |
392
+ Repo {{ "./repo_guidelines.md" | readFile() }}
393
+ Org: {{ "../cm/org_guidelines.md" | readFile() }}
394
+```
395
396
!!! tip "Iterative Guidelines Refinement with Playground"
397
398
To achieve the exact review behavior you want, use this iterative workflow:
0 commit comments