less noisy fastlane slack notifications
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
This commit is contained in:
parent
6a03d90432
commit
70bd6d0070
|
@ -86,7 +86,8 @@ def notify_about_new_build(source, url)
|
|||
|
||||
slack(
|
||||
message: msg,
|
||||
slack_url: ENV["SLACK_URL"]
|
||||
slack_url: ENV["SLACK_URL"],
|
||||
default_payloads: []
|
||||
)
|
||||
|
||||
change_id = ENV["CHANGE_ID"]
|
||||
|
@ -161,7 +162,8 @@ platform :ios do
|
|||
|
||||
slack(
|
||||
message: "New nightly build uploaded to TestFlight",
|
||||
slack_url: ENV["SLACK_URL"]
|
||||
slack_url: ENV["SLACK_URL"],
|
||||
default_payloads: []
|
||||
)
|
||||
|
||||
# additional .ipa is for diawi
|
||||
|
@ -198,7 +200,8 @@ platform :ios do
|
|||
)
|
||||
slack(
|
||||
message: "New release build uploaded to TestFlight",
|
||||
slack_url: ENV["SLACK_URL"]
|
||||
slack_url: ENV["SLACK_URL"],
|
||||
default_payloads: []
|
||||
)
|
||||
end
|
||||
|
||||
|
@ -253,7 +256,8 @@ platform :android do
|
|||
|
||||
slack(
|
||||
message: "New nightly build uploaded to Google Play",
|
||||
slack_url: ENV["SLACK_URL"]
|
||||
slack_url: ENV["SLACK_URL"],
|
||||
default_payloads: []
|
||||
)
|
||||
end
|
||||
lane :release do
|
||||
|
@ -266,7 +270,8 @@ platform :android do
|
|||
)
|
||||
slack(
|
||||
message: "New release build uploaded to Google Play",
|
||||
slack_url: ENV["SLACK_URL"]
|
||||
slack_url: ENV["SLACK_URL"],
|
||||
default_payloads: []
|
||||
)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue