Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Teams notification action #4

Teams notification action

Teams notification action #4

name: Manually Test Teams Action
on:
push:
branches: [slack_message_to_teams]
workflow_dispatch:
inputs:
msg:
description: 'Message to send:'
required: true
default: 'This is a test message'
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Send notification
uses: ./.github/actions/teams-message
with:
msg: ${{ github.event.inputs.msg }}
teams_url: ${{ secrets.TEAMS_CORSO_CI_WEBHOOK_URL }}