generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
32 lines (29 loc) · 808 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: 'Google Chat Github Action'
description: 'Send a notification to Google Chat with the result of a GitHub Action'
author: 'JChrist'
# Define your inputs here.
inputs:
name:
description: 'Job Name'
required: true
url:
description: 'Google Chat Webhook URL'
required: true
status:
description: 'Job Status'
required: true
collapse:
description: >
The number of _widgets_ in the card section that are not collapsible.
Defaults to -1: card is not collapsible.
Valid values:
*no value/omitted*: the default value
number: the number of widgets that are not collapsible. If negative, the card is not collapsible.
required: false
default: '-1'
branding:
icon: 'bell'
color: 'green'
runs:
using: node20
main: dist/index.js