From 3c6dea5f9855a8859c95e4fd90ab6049c60e8a76 Mon Sep 17 00:00:00 2001 From: Michael Heap Date: Mon, 22 Jan 2024 13:25:42 +0000 Subject: [PATCH] Add ability to set base URL for install instructions testing --- .github/workflows/install-instructions-test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/install-instructions-test.yml b/.github/workflows/install-instructions-test.yml index 9d78dfa17c4f..8dd905d437a3 100644 --- a/.github/workflows/install-instructions-test.yml +++ b/.github/workflows/install-instructions-test.yml @@ -1,5 +1,10 @@ name: Install Instructions -on: workflow_dispatch +on: + workflow_dispatch: + inputs: + base_url: + type: string + description: URL to test against. Defaults to http://localhost:8888 jobs: install-instructions: @@ -28,6 +33,7 @@ jobs: CONTINUE_ON_ERROR: 1 IGNORE_SKIPS: 1 EXPECTED_FAILURES_EXIT_CODE: 0 + BASE_URL: ${{ github.event.inputs.base_url || env.BASE_URL }} run: | cd tools/install-tester npm ci