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 @- <