Skip to content

Commit 092e45d

Browse files
Update email format 6
1 parent 674a48e commit 092e45d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

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

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

7474
- name: Send schedule notification on failure
75-
if: (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && steps.result.outputs.status == 'failure' ## || github.event_name == 'workflow_dispatch' remove this
75+
if: github.event_name == 'schedule' && steps.result.outputs.status == 'failure'
7676
env:
7777
LOGICAPP_URL: ${{ secrets.EMAILNOTIFICATION_LOGICAPP_URL_TA }}
7878
ACCELERATOR_NAME: ${{ env.accelerator_name }}
@@ -88,7 +88,7 @@ jobs:
8888
-d @- || echo "Failed to send notification"
8989
9090
- name: Send schedule notification on success
91-
if: (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && steps.result.outputs.status == 'success' ## || github.event_name == 'workflow_dispatch' remove this
91+
if: github.event_name == 'schedule' && steps.result.outputs.status == 'success'
9292
env:
9393
LOGICAPP_URL: ${{ secrets.EMAILNOTIFICATION_LOGICAPP_URL_TA }}
9494
ACCELERATOR_NAME: ${{ env.accelerator_name }}

infra/main.parameters.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
"value": "${AZURE_ENV_NAME}"
77
},
88
"location": {
9-
"value": "${AZURE_LOCATION12}"
9+
"value": "${AZURE_LOCATION}"
1010
},
1111
"azureAiServiceLocation": {
12-
"value": "${AZURE_ENV_AI_SERVICE_LOCATION34}"
12+
"value": "${AZURE_ENV_AI_SERVICE_LOCATION}"
1313
},
1414
"deploymentType": {
15-
"value": "${AZURE_ENV_MODEL_DEPLOYMENT_TYPE233}"
15+
"value": "${AZURE_ENV_MODEL_DEPLOYMENT_TYPE}"
1616
},
1717
"gptModelName": {
1818
"value": "${AZURE_ENV_GPT_MODEL_NAME}"

0 commit comments

Comments
 (0)