From 66d5162fd9c54cc8f460a14def325330c6ae9635 Mon Sep 17 00:00:00 2001 From: Mukesh Parmar Date: Fri, 28 Feb 2025 10:36:46 +0000 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..2f1b92a26 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: MS Teams Notification +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + # this is the new step + - uses: dchourasia/ms-teams-notification@1.0 # or "./" if in a local set-up + if: always() + with: + github-token: ${{ github.token }} + webhook-uri: ${{ secrets.MSTEAMS_WEBHOOK_URL }}