You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This action, once triggered, reviews the code in the PR, and generates a comment with the identified issue, bugs, misconfigurations, and bad practices in the newly introduced code, with an option to approve the PR if no issues were found.
284
+
This action, once triggered, reviews the code in the PR, and generates a comment with the identified issue, bugs, misconfigurations, and bad practices in the newly introduced code, with an option to approve the PR if no issues were found.
309
285
310
286
<divclass="filter-details"markdown=1>
311
287
@@ -333,6 +309,63 @@ automations:
333
309
APPROVE_PR_ON_LGTM: false # Add conditions for PR approvals. For example - allow approval only for specific users
This action, once triggered, leverages AI to generate a comprehensive summary of the changes in the PR and incorporates it into the PR description.
315
+
316
+
The action automatically analyzes the code modifications to create a clear, high-level overview of what has been changed, making it easier for reviewers to understand the scope and purpose of the PR.
|`concat_mode`| Optional | String | By default `replace`. The mode to add the changes description, can be `replace`, `append`, or `prepend` to the PR description |
323
+
324
+
</div>
325
+
326
+
```yaml+jinja title="example"
327
+
automations:
328
+
pr_description:
329
+
# trigger it only when PR is created or has new commits.
330
+
on:
331
+
- pr_created
332
+
- commit
333
+
# Skip description for Draft PRs and PRs from bots.
0 commit comments