File tree 1 file changed +1
-12
lines changed
1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 4
4
schedule :
5
5
- cron : " 0 0 1/2 * *"
6
6
workflow_dispatch :
7
- inputs :
8
- skip_resource_cleanup :
9
- description : Skip Management Cluster and Charts Cleanup
10
- default : false
11
- type : boolean
12
- skip_deletion_test :
13
- description : Skip deleting git repo and cluster tests
14
- default : false
15
- type : boolean
16
7
17
8
concurrency : ci_e2e_tests
18
9
28
19
test_name : Import via GitOps [v3]
29
20
artifact_name : artifacts_import_gitops_v3
30
21
MANAGEMENT_CLUSTER_ENVIRONMENT : eks
31
- skip_resource_cleanup : ${{ inputs.skip_resource_cleanup != '' && inputs.skip_resource_cleanup || false }}
32
- skip_deletion_test : ${{ inputs.skip_deletion_test != '' && inputs.skip_deletion_test || false }}
33
22
secrets : inherit
34
23
e2e_v2prov :
35
24
needs : publish_e2e_image
41
30
MANAGEMENT_CLUSTER_ENVIRONMENT : eks
42
31
secrets : inherit
43
32
e2e_cleanup :
44
- if : ${{ inputs.skip_resource_cleanup == '' || !inputs.skip_resource_cleanup }}
33
+ if : always()
45
34
needs : [e2e_import_gitops_v3, e2e_v2prov]
46
35
uses : ./.github/workflows/e2e-cleanup.yaml
47
36
secrets : inherit
You can’t perform that action at this time.
0 commit comments