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
36
|
# File 'lib/fastlane/plugin/sq_ci_tools/options/max.rb', line 11
def self.options
[
FastlaneCore::ConfigItem.new(
key: :max_access_token,
env_name: 'SQ_CI_MAX_ACCESS_TOKEN',
description: 'Access token for Max bot',
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :max_chat_ids,
env_name: 'SQ_CI_MAX_CHAT_IDS',
description: 'Max\'s chat ids for send message',
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :max_format,
env_name: 'SQ_CI_MAX_FORMAT',
description: 'Max\'s format of message',
optional: true,
type: String,
default_value: "markdown"
)
]
end
|