This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
Teams notification action #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |