From c32be67167102bed70e79efed2605cf04b336ce3 Mon Sep 17 00:00:00 2001 From: srxly888-creator Date: Fri, 27 Mar 2026 17:09:36 +0800 Subject: [PATCH 1/2] docs: migrate PR review action path to OpenHands/extensions plugin --- openhands/usage/use-cases/code-review.mdx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/openhands/usage/use-cases/code-review.mdx b/openhands/usage/use-cases/code-review.mdx index 52b1b78a..ea9c949c 100644 --- a/openhands/usage/use-cases/code-review.mdx +++ b/openhands/usage/use-cases/code-review.mdx @@ -78,7 +78,7 @@ Choose between two review styles: runs-on: ubuntu-latest steps: - name: Run PR Review - uses: OpenHands/software-agent-sdk/.github/actions/pr-review@main + uses: OpenHands/extensions/plugins/pr-review@main with: llm-model: anthropic/claude-sonnet-4-5-20250929 review-style: standard @@ -190,7 +190,7 @@ Customize the workflow by modifying the action inputs: ```yaml - name: Run PR Review - uses: OpenHands/software-agent-sdk/.github/actions/pr-review@main + uses: OpenHands/extensions/plugins/pr-review@main with: # Change the LLM model llm-model: anthropic/claude-sonnet-4-5-20250929 @@ -268,8 +268,9 @@ See real automated reviews in action on the OpenHands Software Agent SDK reposit ## Related Resources -- [PR Review Workflow Reference](https://github.com/OpenHands/software-agent-sdk/tree/main/examples/03_github_workflows/02_pr_review) - Full workflow example and agent script -- [Composite Action](https://github.com/OpenHands/software-agent-sdk/blob/main/.github/actions/pr-review/action.yml) - Reusable GitHub Action for PR reviews +- [PR Review Workflow Reference](https://github.com/OpenHands/extensions/tree/main/plugins/pr-review) - Full workflow example and agent script +- [Composite Action](https://github.com/OpenHands/extensions/blob/main/plugins/pr-review/action.yml) - Reusable GitHub Action for PR reviews - [Software Agent SDK](/sdk/index) - Build your own AI-powered workflows - [GitHub Integration](/openhands/usage/cloud/github-installation) - Set up GitHub integration for OpenHands Cloud - [Skills Documentation](/overview/skills) - Learn more about OpenHands skills + From cdef73a213f535ea9db2caf7600063c531236d4b Mon Sep 17 00:00:00 2001 From: srxly888-creator Date: Fri, 27 Mar 2026 17:09:39 +0800 Subject: [PATCH 2/2] docs: migrate PR review action path to OpenHands/extensions plugin --- openhands/usage/essential-guidelines/sdlc-integration.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openhands/usage/essential-guidelines/sdlc-integration.mdx b/openhands/usage/essential-guidelines/sdlc-integration.mdx index b56e3eb5..ffd335a8 100644 --- a/openhands/usage/essential-guidelines/sdlc-integration.mdx +++ b/openhands/usage/essential-guidelines/sdlc-integration.mdx @@ -126,7 +126,7 @@ The Software Agent SDK provides composite GitHub Actions for common workflows: - **[Automated PR Review](/openhands/usage/use-cases/code-review)** - Automatically review pull requests with inline comments - **[SDK GitHub Workflows Guide](/sdk/guides/github-workflows/pr-review)** - Build custom GitHub workflows with the SDK -For example, to set up automated PR reviews, see the [Automated Code Review](/openhands/usage/use-cases/code-review) guide which uses the real `OpenHands/software-agent-sdk/.github/actions/pr-review` composite action. +For example, to set up automated PR reviews, see the [Automated Code Review](/openhands/usage/use-cases/code-review) guide which uses the real `OpenHands/extensions/plugins/pr-review` composite action. ### What You Can Automate @@ -370,3 +370,4 @@ You can build custom event-triggered workflows using the Software Agent SDK. For For more event-driven automation patterns, see: - [SDK GitHub Workflows Guide](/sdk/guides/github-workflows/pr-review) - Build custom workflows triggered by GitHub events - [GitHub Action Integration](/openhands/usage/run-openhands/github-action) - Use the OpenHands resolver for issue triage +