forked from jdcargile/ms-teams-notification
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
31 lines (31 loc) · 905 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
name: 'Microsoft Teams Notification'
description: 'Send a custom notification message to a Microsoft Teams channel with GitHub repo details'
author: 'cinch-labs'
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
notification-text:
description: 'The release notes'
required: false
release-title:
description: 'The title for your release notes, defaults to Release Notes'
required: false
runs:
using: 'node16'
main: 'dist/index.js'