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
{{ message }}
This repository was archived by the owner on Dec 2, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: .github/workflows/openhands-resolver.yml
+5-5
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,7 @@ jobs:
138
138
issue_number: ${{ env.ISSUE_NUMBER }},
139
139
owner: context.repo.owner,
140
140
repo: context.repo.repo,
141
-
body: `OpenHands started fixing the ${issueType}! You can monitor the progress [here](https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}).`
141
+
body: `OpenHands started fixing the ${issueType}! You can monitor the progress [here](https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}).\n\n> ALERT: message from your friendly neighborhood code agent -> this is an old version of the OpenHands github resolver. It has been moved to https://github.com/All-Hands-AI/OpenHands/tree/main/openhands/resolver`
142
142
});
143
143
144
144
- name: Install dependencies
@@ -244,27 +244,27 @@ jobs:
244
244
issue_number: issueNumber,
245
245
owner: context.repo.owner,
246
246
repo: context.repo.repo,
247
-
body: `The workflow to fix this issue encountered an error. Openhands failed to create any code changes.`
247
+
body: `The workflow to fix this issue encountered an error. Openhands failed to create any code changes.\n\n> ALERT: message from your friendly neighborhood code agent -> this is an old version of the OpenHands github resolver. It has been moved to https://github.com/All-Hands-AI/OpenHands/tree/main/openhands/resolver`
248
248
});
249
249
} else if (success && prNumber) {
250
250
github.rest.issues.createComment({
251
251
issue_number: issueNumber,
252
252
owner: context.repo.owner,
253
253
repo: context.repo.repo,
254
-
body: `A potential fix has been generated and a draft PR #${prNumber} has been created. Please review the changes.`
254
+
body: `A potential fix has been generated and a draft PR #${prNumber} has been created. Please review the changes.\n\n> ALERT: message from your friendly neighborhood code agent -> this is an old version of the OpenHands github resolver. It has been moved to https://github.com/All-Hands-AI/OpenHands/tree/main/openhands/resolver`
255
255
});
256
256
} else if (!success && branchName) {
257
257
github.rest.issues.createComment({
258
258
issue_number: issueNumber,
259
259
owner: context.repo.owner,
260
260
repo: context.repo.repo,
261
-
body: `An attempt was made to automatically fix this issue, but it was unsuccessful. A branch named '${branchName}' has been created with the attempted changes. You can view the branch [here](https://github.com/${context.repo.owner}/${context.repo.repo}/tree/${branchName}). Manual intervention may be required.`
261
+
body: `An attempt was made to automatically fix this issue, but it was unsuccessful. A branch named '${branchName}' has been created with the attempted changes. You can view the branch [here](https://github.com/${context.repo.owner}/${context.repo.repo}/tree/${branchName}). Manual intervention may be required.\n\n> ALERT: message from your friendly neighborhood code agent -> this is an old version of the OpenHands github resolver. It has been moved to https://github.com/All-Hands-AI/OpenHands/tree/main/openhands/resolver`
262
262
});
263
263
} else {
264
264
github.rest.issues.createComment({
265
265
issue_number: issueNumber,
266
266
owner: context.repo.owner,
267
267
repo: context.repo.repo,
268
-
body: `The workflow to fix this issue encountered an error. Please check the workflow logs for more information.`
268
+
body: `The workflow to fix this issue encountered an error. Please check the workflow logs for more information.\n\n> ALERT: message from your friendly neighborhood code agent -> this is an old version of the OpenHands github resolver. It has been moved to https://github.com/All-Hands-AI/OpenHands/tree/main/openhands/resolver`
Copy file name to clipboardExpand all lines: examples/openhands-resolver.yml
+2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
name: Resolve Issue with OpenHands
2
2
3
+
# ALERT: message from your friendly neighborhood code agent -> this is an old version of the OpenHands github resolver. It has been moved to https://github.com/All-Hands-AI/OpenHands/tree/main/openhands/resolver
0 commit comments