-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.d.ts
35 lines (35 loc) · 1.13 KB
/
config.d.ts
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
35
export interface Config {
slack: {
/**
*
* This is required if you're using a Slack webhook URL to send messages and you
* don't intend to supply the webhook URL from the action inputs.
*
* @visibility secret
*/
webhookUrl?: string;
/**
*
* These are required if you are using the Slack API to send messages and you
* don't intend to supply these from the action inputs.
*
* @visibility secret
*/
token?: string;
/**
*
* The ID of the conversation to send messages to. Either this or the conversationName
* are required here if you don't intend to supply either from the action inputs.
*
* @visibility backend
*/
conversationId?: string;
/**
* The name of the conversation to send messages to. Either this or the conversationId
* are rqeuired here if you don't intend to supply either from the action inputs.
*
* @visibility backend
*/
conversationName?: string;
};
};