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