-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Send MM message in case of App Store Release failure (#2466)
- Loading branch information
Showing
2 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
{"channel":"${MM_USER_HANDLE}","username":"GitHub Actions","text":"**iOS app has been successfully uploaded to ${DESTINATION}** :goose_honk_tada: | [:github: Workflow run summary](${WORKFLOW_URL})","icon_url":"https://duckduckgo.com/assets/logo_header.v108.svg"} | ||
{ | ||
"failure": { | ||
"channel": "${MM_USER_HANDLE}", | ||
"username": "GitHub Actions", | ||
"text": ":warning: **iOS release job failed** :thisisfine: | [:github: Workflow run summary](${WORKFLOW_URL})", | ||
"icon_url": "https://duckduckgo.com/assets/logo_header.v108.svg" | ||
}, | ||
"success": { | ||
"channel": "${MM_USER_HANDLE}", | ||
"username": "GitHub Actions", | ||
"text": "**iOS app has been successfully uploaded to ${DESTINATION}** :goose_honk_tada: | [:github: Workflow run summary](${WORKFLOW_URL})", | ||
"icon_url": "https://duckduckgo.com/assets/logo_header.v108.svg" | ||
} | ||
} |