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(
|
slack(
|
||||||
message: msg,
|
message: msg,
|
||||||
slack_url: ENV["SLACK_URL"]
|
slack_url: ENV["SLACK_URL"],
|
||||||
|
default_payloads: []
|
||||||
)
|
)
|
||||||
|
|
||||||
change_id = ENV["CHANGE_ID"]
|
change_id = ENV["CHANGE_ID"]
|
||||||
|
@ -161,7 +162,8 @@ platform :ios do
|
||||||
|
|
||||||
slack(
|
slack(
|
||||||
message: "New nightly build uploaded to TestFlight",
|
message: "New nightly build uploaded to TestFlight",
|
||||||
slack_url: ENV["SLACK_URL"]
|
slack_url: ENV["SLACK_URL"],
|
||||||
|
default_payloads: []
|
||||||
)
|
)
|
||||||
|
|
||||||
# additional .ipa is for diawi
|
# additional .ipa is for diawi
|
||||||
|
@ -198,7 +200,8 @@ platform :ios do
|
||||||
)
|
)
|
||||||
slack(
|
slack(
|
||||||
message: "New release build uploaded to TestFlight",
|
message: "New release build uploaded to TestFlight",
|
||||||
slack_url: ENV["SLACK_URL"]
|
slack_url: ENV["SLACK_URL"],
|
||||||
|
default_payloads: []
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -253,7 +256,8 @@ platform :android do
|
||||||
|
|
||||||
slack(
|
slack(
|
||||||
message: "New nightly build uploaded to Google Play",
|
message: "New nightly build uploaded to Google Play",
|
||||||
slack_url: ENV["SLACK_URL"]
|
slack_url: ENV["SLACK_URL"],
|
||||||
|
default_payloads: []
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
lane :release do
|
lane :release do
|
||||||
|
@ -266,7 +270,8 @@ platform :android do
|
||||||
)
|
)
|
||||||
slack(
|
slack(
|
||||||
message: "New release build uploaded to Google Play",
|
message: "New release build uploaded to Google Play",
|
||||||
slack_url: ENV["SLACK_URL"]
|
slack_url: ENV["SLACK_URL"],
|
||||||
|
default_payloads: []
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue