Change e2e config url (#2338)

This commit is contained in:
Ava Stancu 2023-02-28 20:26:01 +01:00 committed by GitHub
parent b5e9e14244
commit a9af82ec78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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"