From 73bdacbf2199def75b03cb4bec02efab663ce5c6 Mon Sep 17 00:00:00 2001 From: Shawn Chan Date: Wed, 2 Apr 2025 12:54:05 +0100 Subject: [PATCH] feat(ci): add Teams notification on push to develop via Power Automate --- .github/workflows/notify-teams.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/notify-teams.yml diff --git a/.github/workflows/notify-teams.yml b/.github/workflows/notify-teams.yml new file mode 100644 index 0000000..0552252 --- /dev/null +++ b/.github/workflows/notify-teams.yml @@ -0,0 +1,26 @@ +name: Notify Dev Team on develop push + +on: + push: + branches: + - develop + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Notify Dev Team via Power Automate + run: | + curl -X POST "${{ secrets.DEV_MERGE_TEAMS_URL}}" \ + -H "Content-Type: application/json" \ + -d @- <