Skip to content

Commit 483ec48

Browse files
Update email format 4
1 parent aa0401d commit 483ec48

3 files changed

Lines changed: 12 additions & 12 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,7 +6,7 @@
66
"value": "${AZURE_ENV_NAME}"
77
},
88
"location": {
9-
"value": "${AZURE_LOCATION2323}"
9+
"value": "${AZURE_LOCATION}"
1010
},
1111
"contentUnderstandingLocation": {
1212
"value": "${AZURE_ENV_CU_LOCATION}"
@@ -17,13 +17,13 @@
1717
"deploymentType": {
1818
"value": "${AZURE_ENV_MODEL_DEPLOYMENT_TYPE}"
1919
},
20-
"gptModelName232": {
20+
"gptModelName": {
2121
"value": "${AZURE_ENV_GPT_MODEL_NAME}"
2222
},
23-
"gptModelVersion232": {
23+
"gptModelVersion": {
2424
"value": "${AZURE_ENV_GPT_MODEL_VERSION}"
2525
},
26-
"gptDeploymentCapacity23": {
26+
"gptDeploymentCapacity": {
2727
"value": "${AZURE_ENV_GPT_MODEL_CAPACITY}"
2828
},
2929
"existingLogAnalyticsWorkspaceId": {

infra/main.waf.parameters.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@
66
"value": "${AZURE_ENV_NAME}"
77
},
88
"location": {
9-
"value": "${AZURE_LOCATION2342}"
9+
"value": "${AZURE_LOCATION}"
1010
},
11-
"contentUnderstandingL24ocation": {
11+
"contentUnderstandingLocation": {
1212
"value": "${AZURE_ENV_CU_LOCATION}"
1313
},
14-
"azureAiServ324iceLocation": {
14+
"azureAiServiceLocation": {
1515
"value": "${AZURE_ENV_AI_SERVICE_LOCATION}"
1616
},
17-
"deployme234ntType": {
17+
"deploymentType": {
1818
"value": "${AZURE_ENV_MODEL_DEPLOYMENT_TYPE}"
1919
},
20-
"gptModelN234ame": {
20+
"gptModelName": {
2121
"value": "${AZURE_ENV_GPT_MODEL_NAME}"
2222
},
23-
"gptModelV324ersion": {
23+
"gptModelVersion": {
2424
"value": "${AZURE_ENV_GPT_MODEL_VERSION}"
2525
},
2626
"gptDeploymentCapacity": {

0 commit comments

Comments
 (0)