diff --git a/action.yml b/action.yml
index b873d49aed91cca7e409fdc727643605db6ddfcd..1e2742c33cca33877a5b9eeb34b2501e0fcbc0e9 100644
--- a/action.yml
+++ b/action.yml
@@ -19,7 +19,9 @@ inputs:
    SONAR_TOKEN:
     description: 'A sonar token'
     required: true
-
+   MSTEAMS_WEBHOOK:
+    description: 'MS Teams webhook URI'
+    required: true
 runs:
   using: "composite"
   steps:
@@ -27,10 +29,10 @@ runs:
       # it uses env variables from github secrets for the credentials
       # to github, dockerhub and sonar.
       - name: Build and test with Maven in docker
-        run: ./mvn.sh clean verify
+        run: mvn.sh clean verify
         shell: bash
       - name: Deploy Maven Artifacts
-        run: ./mvn.sh deploy
+        run: mvn.sh deploy
         shell: bash
       - name: Notify dedicated teams channel of Success
         uses: dragos-cojocari/ms-teams-notification@v1.0.0