forked from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 39
/
action.yml
34 lines (34 loc) · 867 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
33
34
name: 'notify-microsoft-teams'
description: 'Microsoft Teams Notification for Github Actions'
author: 'Skitionek'
inputs:
webhook_url:
description: 'teams incoming webhook url'
required: false
raw:
description: 'JSON object to send to Microsoft Teams'
required: false
title:
description: 'Text to show as message title'
required: false
msteams_emails:
description: 'Microsoft teams emails in CSV to tag in the message'
required: false
job:
description: 'JSON parsed job context'
required: false
steps:
description: 'JSON parsed steps context'
required: false
needs:
description: 'JSON parsed needs context'
required: false
dry_run:
description: 'Do not actually send the message'
required: false
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'bell'
color: 'purple'