diff --git a/.github/workflows/openhands-resolver.yml b/.github/workflows/openhands-resolver.yml index 02c06d5..356f106 100644 --- a/.github/workflows/openhands-resolver.yml +++ b/.github/workflows/openhands-resolver.yml @@ -42,7 +42,7 @@ jobs: github.event.label.name == 'fix-me' || github.event.label.name == 'fix-me-experimental' || (github.event_name == 'issue_comment' && - contains(github.event.comment.body, ${{ inputs.macro || '@openhands-agent' }}) && + contains(github.event.comment.body, inputs.macro || '@openhands-agent') && (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'MEMBER')) runs-on: ubuntu-latest steps: diff --git a/examples/openhands-resolver.yml b/examples/openhands-resolver.yml index 743d40b..d22bc5a 100644 --- a/examples/openhands-resolver.yml +++ b/examples/openhands-resolver.yml @@ -19,7 +19,7 @@ jobs: if: | github.event.label.name == 'fix-me' || (github.event_name == 'issue_comment' && - contains(github.event.comment.body, ${{ inputs.macro || '@openhands-agent' }}) && + contains(github.event.comment.body, inputs.macro || '@openhands-agent') && (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'MEMBER')) with: max_iterations: 50