generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
32 lines (27 loc) · 779 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: 'Send message to MS Teams (webhook)'
description: 'Send message to channels in MS Teams using webhook'
author: 'Keerthi Shankar Subramanian'
inputs:
webhookUrl:
description: 'Incoming webhook URL'
required: true
message:
description: 'Message to be sent to Teams'
required: true
# Optional inputs
title:
description: 'Title of the message card'
required: false
titleBackgroundColor:
description: 'Background color of the title'
required: false
status:
description: 'Status of the GitHub job or step'
required: false
# For environment variables see - https://github.com/neonidian/teams-notify-build-status#environment-variables
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'send'
color: 'purple'