Skip to content

Commit 90f933d

Browse files
committed
Enable End to End PL in Dev
1 parent 01f78b3 commit 90f933d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cicd-1-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
contents: read
157157
uses: ./.github/workflows/stage-4-deploy.yaml
158158
with:
159-
environments: "[\"sandbox\"]"
159+
environments: "[\"development\"]"
160160
commit_sha: ${{ github.sha }}
161161
secrets: inherit
162162
validate-title-stage:

.github/workflows/stage-4-deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ jobs:
6666
6767
# Define which tests to run based on the environment
6868
declare -A test_types=(
69-
["dev"]="smoke_e2e,regression_api,regression_e2e_epic1,regression_e2e_epic2,regression_e2e_epic3"
69+
["development"]="smoke_e2e,regression_api,regression_e2e_epic1"
7070
["nft"]="smoke_e2e,regression_api,regression_e2e_epic1,regression_e2e_epic2,regression_e2e_epic3"
71-
["int"]=""
71+
["integration"]=""
7272
["sandbox"]="smoke_e2e,regression_api"
73-
["pre"]=""
74-
["prod"]=""
73+
["preprod"]=""
74+
["production"]=""
7575
)
7676
7777
git_short_sha=$(git rev-parse --short ${{inputs.commit_sha}})

0 commit comments

Comments
 (0)