https://github.com/charmitro/msteams-webhook-message-action
Sends a message to a specific MSTeams Webhook.
https://github.com/charmitro/msteams-webhook-message-action
action webhook
Last synced: 8 months ago
JSON representation
Sends a message to a specific MSTeams Webhook.
- Host: GitHub
- URL: https://github.com/charmitro/msteams-webhook-message-action
- Owner: charmitro
- Archived: true
- Created: 2021-02-06T14:01:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-11T12:43:51.000Z (about 5 years ago)
- Last Synced: 2024-04-24T07:22:01.157Z (about 2 years ago)
- Topics: action, webhook
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Microsoft Teams Webhook Message Action
This action sends a message to a specific MSTeams Webhook.
## Inputs
### `WEBHOOK_URL`
**Required**
### `TITLE`
**Required** Title of the message
### `MESSAGE`
**Required** The message body
## Example usage
```yaml
- name: MSTeams Webhook message
uses: charmitro/msteams-webhook-message-action@v0.5
env:
WEBHOOK_URL:
TITLE: "Test"
MESSAGE: "Test message from GitHub action."
```