feat(resolver): Support for User-Defined Runners (#8216)

Co-authored-by: Victor Faro <victor.faro@mcmakler.de>
Co-authored-by: Rohit Malhotra <rohitvinodmalhotra@gmail.com>
This commit is contained in:
Victor Faro
2025-05-06 17:35:35 -03:00
committed by GitHub
parent e5f98c7ff0
commit 59f00e641f
3 changed files with 7 additions and 1 deletions

View File

@@ -34,6 +34,10 @@ on:
type: string
default: ""
description: "Custom sandbox env"
runner:
required: false
type: string
default: "ubuntu-latest"
secrets:
LLM_MODEL:
required: false
@@ -79,7 +83,7 @@ jobs:
(github.event.review.author_association == 'OWNER' || github.event.review.author_association == 'COLLABORATOR' || github.event.review.author_association == 'MEMBER')
)
)
runs-on: ubuntu-latest
runs-on: "${{ inputs.runner }}"
steps:
- name: Checkout repository
uses: actions/checkout@v4