We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb2eb0b + b59f1ba commit 5b466e2Copy full SHA for 5b466e2
.github/workflows/e2e.yml
@@ -2,6 +2,11 @@ name: E2E
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ e2e_branch:
7
+ description: "Branch of synonymdev/bitkit-e2e-tests to use"
8
+ required: false
9
+ default: "main"
10
pull_request:
11
12
env:
@@ -60,11 +65,17 @@ jobs:
60
65
needs: build
61
66
62
67
steps:
68
+ - name: Show selected E2E branch
69
+ env:
70
+ E2E_BRANCH: ${{ github.event.inputs.e2e_branch || 'main' }}
71
+ run: echo $E2E_BRANCH
72
+
63
73
- name: Clone E2E tests
64
74
uses: actions/checkout@v4
75
with:
76
repository: synonymdev/bitkit-e2e-tests
77
path: bitkit-e2e-tests
78
+ ref: ${{ github.event.inputs.e2e_branch || 'main' }}
79
80
- name: Enable KVM
81
run: |
0 commit comments