| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- name: Resolve Issue with OpenHands
- on:
- issues:
- types: [labeled]
- pull_request:
- types: [labeled]
- issue_comment:
- types: [created]
- pull_request_review_comment:
- types: [created]
- pull_request_review:
- types: [submitted]
- permissions:
- contents: write
- pull-requests: write
- issues: write
- jobs:
- call-openhands-resolver:
- if: |
- github.event.label.name == 'fix-me' ||
- (
- ((github.event_name == 'issue_comment' || github.event_name == 'pull_request_review_comment') &&
- (startsWith(github.event.comment.body, inputs.macro || '@openhands-agent') || startsWith(github.event.comment.body, inputs.macro || vars.OPENHANDS_MACRO)) &&
- (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'MEMBER')
- ) ||
- (github.event_name == 'pull_request_review' &&
- (startsWith(github.event.review.body, inputs.macro || '@openhands-agent') || startsWith(github.event.review.body, inputs.macro || vars.OPENHANDS_MACRO)) &&
- (github.event.review.author_association == 'OWNER' || github.event.review.author_association == 'COLLABORATOR' || github.event.review.author_association == 'MEMBER')
- )
- )
- uses: All-Hands-AI/OpenHands/.github/workflows/openhands-resolver.yml@main
- with:
- macro: ${{ vars.OPENHANDS_MACRO || '@openhands-agent' }}
- max_iterations: 50
- secrets:
- PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
- PAT_USERNAME: ${{ secrets.PAT_USERNAME }}
- LLM_MODEL: ${{ secrets.LLM_MODEL }}
- LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
- LLM_BASE_URL: ${{ secrets.LLM_BASE_URL }}
|