From e9c2fcc5f8a3fa31f8d5c5881c2f9f9cc32164e0 Mon Sep 17 00:00:00 2001 From: paolino Date: Mon, 18 Dec 2023 15:33:23 +0000 Subject: [PATCH] Add branch input to docker E2E workflow --- .github/workflows/e2e-docker.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-docker.yml b/.github/workflows/e2e-docker.yml index 9b238d468c6..0dc99ceee94 100644 --- a/.github/workflows/e2e-docker.yml +++ b/.github/workflows/e2e-docker.yml @@ -6,16 +6,19 @@ on: workflow_dispatch: inputs: nodeTag: - description: 'Node tag (docker)' + description: 'Node docker-image tag to use' required: true default: '8.1.2' walletTag: - description: 'Wallet tag (docker)' + description: 'Wallet docker-image tag to use' required: true default: 'rc-latest' tags: description: 'Test tags (all, light, offchain...)' default: 'all' + branch: + description: 'Clone E2E tests from branch' + default: 'rc-latest' defaults: run: @@ -39,7 +42,7 @@ jobs: - name: Checkout the rc-latest tag uses: actions/checkout@v4.1.1 with: - ref: ${{ github.event.inputs.walletTag || 'rc-latest' }} + ref: ${{ github.event.inputs.branch || 'rc-latest' }} - name: Set up Ruby uses: ruby/setup-ruby@v1