From d4bc4a3a0c2a3f466ddd0999047f5033146a6336 Mon Sep 17 00:00:00 2001
From: Emmanuel Bruno <emmanuel.bruno@univ-tln.fr>
Date: Fri, 28 Oct 2022 16:34:50 +0200
Subject: [PATCH] first try

---
 action.yml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/action.yml b/action.yml
index b873d49..1e2742c 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
-- 
GitLab