File tree 3 files changed +10
-7
lines changed
docs/modules/usage/how-to
openhands/resolver/examples
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ jobs:
177
177
echo "SANDBOX_ENV_BASE_CONTAINER_IMAGE=${{ inputs.base_container_image }}" >> $GITHUB_ENV
178
178
179
179
# Set branch variables
180
- echo "TARGET_BRANCH=${{ inputs.target_branch }}" >> $GITHUB_ENV
180
+ echo "TARGET_BRANCH=${{ inputs.target_branch || 'main' }}" >> $GITHUB_ENV
181
181
182
182
- name : Comment on issue with start message
183
183
uses : actions/github-script@v7
@@ -277,6 +277,7 @@ jobs:
277
277
if [ "${{ steps.check_result.outputs.RESOLUTION_SUCCESS }}" == "true" ]; then
278
278
cd /tmp && python -m openhands.resolver.send_pull_request \
279
279
--issue-number ${{ env.ISSUE_NUMBER }} \
280
+ --target-branch ${{ env.TARGET_BRANCH }} \
280
281
--pr-type draft \
281
282
--reviewer ${{ github.actor }} | tee pr_result.txt && \
282
283
grep "draft created" pr_result.txt | sed 's/.*\///g' > pr_number.txt
Original file line number Diff line number Diff line change @@ -42,9 +42,10 @@ You can provide custom directions for OpenHands by following the [README for the
42
42
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.
43
43
The customization options you can set are:
44
44
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" ` |
Original file line number Diff line number Diff line change 25
25
max_iterations : ${{ fromJson(vars.OPENHANDS_MAX_ITER || 50) }}
26
26
base_container_image : ${{ vars.OPENHANDS_BASE_CONTAINER_IMAGE || '' }}
27
27
LLM_MODEL : ${{ vars.LLM_MODEL || 'anthropic/claude-3-5-sonnet-20241022' }}
28
+ target_branch : ${{ vars.TARGET_BRANCH || 'main' }}
28
29
secrets :
29
30
PAT_TOKEN : ${{ secrets.PAT_TOKEN }}
30
31
PAT_USERNAME : ${{ secrets.PAT_USERNAME }}
You can’t perform that action at this time.
0 commit comments