Skip to content

Commit 5d4e538

Browse files
Update email format 3
1 parent 61d1978 commit 5d4e538

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/validate-bicep-params.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
retention-days: 30
7272

7373
- name: Send schedule notification on failure
74-
if: (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && steps.result.outputs.status == 'failure'
74+
if: github.event_name == 'schedule' && steps.result.outputs.status == 'failure'
7575
env:
7676
LOGICAPP_URL: ${{ secrets.EMAILNOTIFICATION_LOGICAPP_URL_TA }}
7777
ACCELERATOR_NAME: ${{ env.accelerator_name }}
@@ -87,7 +87,7 @@ jobs:
8787
-d @- || echo "Failed to send notification"
8888
8989
- name: Send schedule notification on success
90-
if: (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && steps.result.outputs.status == 'success'
90+
if: github.event_name == 'schedule' && steps.result.outputs.status == 'success'
9191
env:
9292
LOGICAPP_URL: ${{ secrets.EMAILNOTIFICATION_LOGICAPP_URL_TA }}
9393
ACCELERATOR_NAME: ${{ env.accelerator_name }}

infra/main.parameters.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
"value": "${AZURE_ENV_NAME}"
77
},
88
"location": {
9-
"value": "${AZURE_LOCATION23}"
9+
"value": "${AZURE_LOCATION}"
1010
},
1111
"deploymentType": {
1212
"value": "${AZURE_ENV_MODEL_DEPLOYMENT_TYPE}"
1313
},
14-
"gptModelNa23me": {
14+
"gptModelName": {
1515
"value": "${AZURE_ENV_GPT_MODEL_NAME}"
1616
},
17-
"gptDeploymentCapacity23": {
17+
"gptDeploymentCapacity": {
1818
"value": "${AZURE_ENV_GPT_MODEL_CAPACITY}"
1919
},
2020
"gptModelVersion": {
21-
"value": "${AZURE_ENV_GPT_MODEL_VERSION23}"
21+
"value": "${AZURE_ENV_GPT_MODEL_VERSION}"
2222
},
2323
"imageTag": {
2424
"value": "${AZURE_ENV_IMAGE_TAG=latest}"

infra/main.waf.parameters.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"value": "${AZURE_ENV_NAME}"
77
},
88
"location": {
9-
"value": "${AZURE_LOCATION23}"
9+
"value": "${AZURE_LOCATION}"
1010
},
1111
"deploymentType": {
1212
"value": "${AZURE_ENV_MODEL_DEPLOYMENT_TYPE}"
@@ -15,15 +15,15 @@
1515
"value": "${AZURE_ENV_GPT_MODEL_NAME}"
1616
},
1717
"gptDeploymentCapacity": {
18-
"value": "${AZURE_ENV_GPT_MODEL_CAPACITY23}"
18+
"value": "${AZURE_ENV_GPT_MODEL_CAPACITY}"
1919
},
20-
"gptModelVersdssion": {
20+
"gptModelVersion": {
2121
"value": "${AZURE_ENV_GPT_MODEL_VERSION}"
2222
},
2323
"imageTag": {
2424
"value": "${AZURE_ENV_IMAGE_TAG=latest}"
2525
},
26-
"containerRegistryEndpoint23": {
26+
"containerRegistryEndpoint": {
2727
"value": "${AZURE_ENV_CONTAINER_REGISTRY_ENDPOINT=cmsacontainerreg.azurecr.io}"
2828
},
2929
"existingLogAnalyticsWorkspaceId": {
@@ -41,7 +41,7 @@
4141
"vmSize": {
4242
"value": "${AZURE_ENV_VM_SIZE}"
4343
},
44-
"vmAdminUsername2323": {
44+
"vmAdminUsername": {
4545
"value": "${AZURE_ENV_VM_ADMIN_USERNAME}"
4646
},
4747
"vmAdminPassword": {

0 commit comments

Comments
 (0)