Change e2e config url (#2338)
This commit is contained in:
parent
b5e9e14244
commit
a9af82ec78
|
|
@ -5,6 +5,9 @@ inputs:
|
|||
github-token:
|
||||
description: 'JWT generated with Github App inputs'
|
||||
required: true
|
||||
config-url:
|
||||
description: "URL of the repo, org or enterprise where the runner scale sets will be registered"
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
|
|
@ -22,7 +25,7 @@ runs:
|
|||
helm install "arc-runner-${{ env.DATE_TIME }}" \
|
||||
--namespace "arc-runners" \
|
||||
--create-namespace \
|
||||
--set githubConfigUrl="https://github.com/actions/actions-runner-controller" \
|
||||
--set githubConfigUrl="${{ inputs.config-url }}"\
|
||||
--set githubConfigSecret.github_token="${{ inputs.github-token }}" \
|
||||
./charts/auto-scaling-runner-set \
|
||||
--debug
|
||||
|
|
|
|||
|
|
@ -25,3 +25,4 @@ jobs:
|
|||
- uses: ./.github/actions/e2e-arc-test
|
||||
with:
|
||||
github-token: ${{ steps.get_workflow_token.outputs.token }}
|
||||
config-url: "https://github.com/actions-runner-controller/arc_e2e_test_dummy"
|
||||
|
|
|
|||
Loading…
Reference in New Issue