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
28. [Terraform Module Tag Release Workflow (Shared)](./docs/28.tf-monorepo-tag-release.md)
126
+
29. [Terraform PR Plan Diff workflow](./docs/29.tf-pr-checks.md)
127
127
128
128
## Feedback
129
129
If you come accross a bug or have any feedback, please log it in our [issue tracker](https://github.com/clouddrove/github-shared-workflows/issues), or feel free to drop us an email at [[email protected]](mailto:[email protected]).
This reusable workflow integrates Anthropic Claude to automatically review Pull Requests and provide feedback using inline comments and a summary review.
5
+
6
+
The Claude Code Review action is triggered when the workflow is called from another workflow using workflow_call.
7
+
8
+
#### Usage
9
+
10
+
This workflow provides:
11
+
12
+
- Regular PR checks (e.g., repo checkout)
13
+
14
+
- Claude Code review with configurable prompt
15
+
16
+
- Inline and summary feedback on PRs
17
+
18
+
#### Example Caller Workflow
19
+
20
+
```yaml
21
+
22
+
name: PR Checks Caller
23
+
24
+
on:
25
+
pull_request:
26
+
branches: ["master"] # Limits this workflow to trigger only when PRs are opened against the 'master' branch
0 commit comments