-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Task: Update version number (#951) * Task: telemetry capture English theme names only (#958) * Feature: add telemetry middleware (#961) * Task: Capture deployed version of application for all telemetry data collected (#964) * Task: Enable autocollection of unhandled exceptions (#963) * Fix: prevent running empty requests (#972) * Task: add code-owners (#969) * Task: send notification when release is created (#967) * Fix: interaction in progress (#976) * Feature: Display Graph Explorer Version (#977) [Disabled] * Feature: show delta links when property is present (#978) * Fix: mgt story links (#981) * Task: Update README.md for Azure auth steps (#982)
- Loading branch information
Showing
50 changed files
with
1,229 additions
and
585 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @thewahome @ElinorW @adhiambovivian @millicentachieng @ddyett @bettirosengugi |
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 |
---|---|---|
|
@@ -21,6 +21,7 @@ jobs: | |
- name: Build And Deploy | ||
env: | ||
REACT_APP_CLIENT_ID: ${{ secrets.REACT_APP_CLIENT_ID }} | ||
REACT_APP_INSTRUMENTATION_KEY: ${{ secrets.REACT_APP_STAGING_INSTRUMENTATION_KEY }} | ||
id: builddeploy | ||
uses: Azure/[email protected] | ||
with: | ||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Publish release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
send_message_job: | ||
runs-on: ubuntu-latest | ||
name: Publish release | ||
steps: | ||
- name: Send a message to Microsoft Teams | ||
uses: aliencube/[email protected] | ||
with: | ||
webhook_uri: ${{ secrets.TEAMS_WEBHOOK_URL}} | ||
title: New release ${{ github.event.release.name }} from ${{ github.event.repository.name }} | ||
summary: A new release (${{ github.event.release.tag_name }}) has been created | ||
text: ${{ github.event.release.body }} | ||
theme_color: 0000FF | ||
actions: '[{"@type": "OpenUri", "name": "View release", "targets": [{ "os": "default", "uri": "${{ github.event.release.html_url }}"}]}]' | ||
|
||
- name: Send a message to Microsoft Outlook | ||
uses: aliencube/[email protected] | ||
with: | ||
webhook_uri: ${{ secrets.OUTLOOK_WEBHOOK_URL}} | ||
title: New release ${{ github.event.release.name }} from ${{ github.event.repository.name }} | ||
summary: A new release (${{ github.event.release.tag_name }}) has been created | ||
text: ${{ github.event.release.body }} | ||
theme_color: 0000FF | ||
actions: '[{"@type": "OpenUri", "name": "View release", "targets": [{ "os": "default", "uri": "${{ github.event.release.html_url }}"}]}]' |
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
Oops, something went wrong.