#!/bin/bash

notify_text_teams_channel(){
  if [ -n "$TEAMS_HOOK" ]; then
    NOTIFICATION_MESSAGE=$1

    . senior-ci/hook/text_notification.sh
  fi
}

notify_release_teams_channel(){
  if [ -n "$RELEASE_NOTIFICATION_TEAM_HOOK" ]; then
    . senior-ci/hook/release_notification.sh $VERSION
  fi
}
