Skip to content

Commit 63effc9

Browse files
authored
Merge branch 'main' into fix-temp-file-empty
2 parents 690f3ad + 8688634 commit 63effc9

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/openhands-resolver.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
echo "SANDBOX_ENV_BASE_CONTAINER_IMAGE=${{ inputs.base_container_image }}" >> $GITHUB_ENV
178178
179179
# Set branch variables
180-
echo "TARGET_BRANCH=${{ inputs.target_branch }}" >> $GITHUB_ENV
180+
echo "TARGET_BRANCH=${{ inputs.target_branch || 'main' }}" >> $GITHUB_ENV
181181
182182
- name: Comment on issue with start message
183183
uses: actions/github-script@v7
@@ -277,6 +277,7 @@ jobs:
277277
if [ "${{ steps.check_result.outputs.RESOLUTION_SUCCESS }}" == "true" ]; then
278278
cd /tmp && python -m openhands.resolver.send_pull_request \
279279
--issue-number ${{ env.ISSUE_NUMBER }} \
280+
--target-branch ${{ env.TARGET_BRANCH }} \
280281
--pr-type draft \
281282
--reviewer ${{ github.actor }} | tee pr_result.txt && \
282283
grep "draft created" pr_result.txt | sed 's/.*\///g' > pr_number.txt

docs/modules/usage/how-to/github-action.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ You can provide custom directions for OpenHands by following the [README for the
4242
Github resolver will automatically check for valid [repository secrets](https://docs.github.com/en/actions/security-for-github-actions/security-guides/using-secrets-in-github-actions?tool=webui#creating-secrets-for-a-repository) or [repository variables](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#creating-configuration-variables-for-a-repository) to customize its behavior.
4343
The customization options you can set are:
4444

45-
| **Attribute name** | **Type** | **Purpose** | **Example** |
46-
|----------------------------------| -------- |-------------------------------------------------------------------------------------------------------------|------------------------------------------------------|
47-
| `LLM_MODEL` | Variable | Set the LLM to use with OpenHands | `LLM_MODEL="anthropic/claude-3-5-sonnet-20241022"` |
48-
| `OPENHANDS_MAX_ITER` | Variable | Set max limit for agent iterations | `OPENHANDS_MAX_ITER=10` |
49-
| `OPENHANDS_MACRO` | Variable | Customize default macro for invoking the resolver | `OPENHANDS_MACRO=@resolveit` |
50-
| `OPENHANDS_BASE_CONTAINER_IMAGE` | Variable | Custom Sandbox ([learn more](https://docs.all-hands.dev/modules/usage/how-to/custom-sandbox-guide)) | `OPENHANDS_BASE_CONTAINER_IMAGE="custom_image"` |
45+
| **Attribute name** | **Type** | **Purpose** | **Example** |
46+
| -------------------------------- | -------- | --------------------------------------------------------------------------------------------------- | -------------------------------------------------- |
47+
| `LLM_MODEL` | Variable | Set the LLM to use with OpenHands | `LLM_MODEL="anthropic/claude-3-5-sonnet-20241022"` |
48+
| `OPENHANDS_MAX_ITER` | Variable | Set max limit for agent iterations | `OPENHANDS_MAX_ITER=10` |
49+
| `OPENHANDS_MACRO` | Variable | Customize default macro for invoking the resolver | `OPENHANDS_MACRO=@resolveit` |
50+
| `OPENHANDS_BASE_CONTAINER_IMAGE` | Variable | Custom Sandbox ([learn more](https://docs.all-hands.dev/modules/usage/how-to/custom-sandbox-guide)) | `OPENHANDS_BASE_CONTAINER_IMAGE="custom_image"` |
51+
| `TARGET_BRANCH` | Variable | Merge to branch other than `main` | `TARGET_BRANCH="dev"` |

openhands/resolver/examples/openhands-resolver.yml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
max_iterations: ${{ fromJson(vars.OPENHANDS_MAX_ITER || 50) }}
2626
base_container_image: ${{ vars.OPENHANDS_BASE_CONTAINER_IMAGE || '' }}
2727
LLM_MODEL: ${{ vars.LLM_MODEL || 'anthropic/claude-3-5-sonnet-20241022' }}
28+
target_branch: ${{ vars.TARGET_BRANCH || 'main' }}
2829
secrets:
2930
PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
3031
PAT_USERNAME: ${{ secrets.PAT_USERNAME }}

0 commit comments

Comments
 (0)