File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 15
15
options :
16
16
- all
17
17
- without_e2e
18
-
18
+ - only_e2e
19
+
19
20
workflow_call :
20
21
inputs :
21
22
group_tests :
@@ -33,17 +34,15 @@ jobs:
33
34
uses : ./.github/workflows/tests-frontend.yml
34
35
secrets : inherit
35
36
36
- # E2E Approve
37
37
e2e-approve :
38
38
runs-on : ubuntu-latest
39
39
timeout-minutes : 60
40
- if : inputs.group_tests == 'all' || startsWith(github.ref_name, 'e2e/')
40
+ if : inputs.group_tests == 'all' || inputs.group_tests == 'only_e2e' || startsWith(github.ref_name, 'e2e/')
41
41
environment : ${{ startsWith(github.ref_name, 'e2e/') && 'e2e-approve' || 'staging' }}
42
42
name : Approve E2E tests
43
43
steps :
44
44
- uses : actions/checkout@v4
45
45
46
- # E2E Docker
47
46
build-linux :
48
47
uses : ./.github/workflows/pipeline-build-linux.yml
49
48
needs : e2e-approve
You can’t perform that action at this time.
0 commit comments