File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
environment :
10
10
description : The environment to run this workflow in
11
11
type : environment
12
- default : CICD
12
+ default : test
13
13
required : true
14
14
15
15
jobs :
16
16
build :
17
17
runs-on : ubuntu-latest
18
18
# environment is used to access the secrets for Azure credentials
19
19
# to sign in to a container registry to re-use a dev container image as a build cache
20
- environment : ${{ inputs.environment || 'CICD '}}
20
+ environment : ${{ inputs.environment || 'test '}}
21
21
22
22
steps :
23
23
- name : Checkout (GitHub)
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ on: # yamllint disable-line rule:truthy
14
14
environment :
15
15
description : The environment to run this workflow in
16
16
type : environment
17
- default : CICD
17
+ default : test
18
18
required : true
19
19
20
20
# This will prevent multiple runs of this entire workflow.
35
35
e2eTestsCustomSelector : >-
36
36
${{ (github.event_name == 'push' && 'extended or extended_aad')
37
37
|| 'extended or extended_aad or shared_services or airlock' }}
38
- environmentName : ${{ github.event.inputs.environment || 'CICD ' }}
38
+ environmentName : ${{ github.event.inputs.environment || 'test ' }}
39
39
E2E_TESTS_NUMBER_PROCESSES : 1
40
40
DEVCONTAINER_TAG : ' latest'
41
41
secrets :
You can’t perform that action at this time.
0 commit comments