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

---
 action.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/action.yml b/action.yml
index eb4f928..b873d49 100644
--- a/action.yml
+++ b/action.yml
@@ -37,7 +37,7 @@ runs:
         if: ${{ success() }}
         with:
           github-token: ${{ github.token }} # this will use the runner's token.
-          ms-teams-webhook-uri: ${{ input.MSTEAMS_WEBHOOK }}
+          ms-teams-webhook-uri: ${{ inputs.MSTEAMS_WEBHOOK }}
           notification-summary: Build and Deploy success.
           notification-color: 28a745
           timezone: Europe/Paris
@@ -46,7 +46,7 @@ runs:
         if: ${{ failure() }}
         with:
           github-token: ${{ github.token }} # this will use the runner's token.
-          ms-teams-webhook-uri: ${{ input.MSTEAMS_WEBHOOK }}
+          ms-teams-webhook-uri: ${{ inputs.MSTEAMS_WEBHOOK }}
           notification-summary: Build and Deploy failure.
           notification-color: dc3545
           timezone: Europe/Paris
-- 
GitLab