generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 75
/
action.yml
29 lines (29 loc) · 813 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
name: 'Microsoft Teams Notification'
description: 'Send a custom notification message to a Microsoft Teams channel with GitHub repo details'
author: 'jdcargile'
branding:
icon: message-circle
color: purple
inputs:
github-token:
description: 'GitHub Token'
required: true
ms-teams-webhook-uri:
description: 'Microsoft Teams Webhook URI'
required: true
notification-summary:
description: 'Message to be sent to Microsoft Teams channel'
required: true
notification-color:
description: 'Color of notification header line'
required: true
timezone:
description: 'Timezone (ex. America/Denver)'
required: false
verbose-logging:
description: 'Enable verbose logging'
default: 'false'
required: false
runs:
using: 'node20'
main: 'dist/index.js'