fastlane-plugin-telegram 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 545071294f8c7e05a347e78c85c4d1e05bc48018
|
|
4
|
+
data.tar.gz: f52a30f42972c898a9302c1befe3a91d673bdc23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74e33918affdfb63164690dc1c27a4db17740a59fac58462db9053e13fd878d927783b1c04a4e03435850ca30754dacec0dad5f1650769bf77250db40addf3d7
|
|
7
|
+
data.tar.gz: 6d5ea97183224ce88e9429b0670a60c90fe9f8e876b1c3283f106047f5a61415cc7b86f70962b4c72a29ab1e49daeff01a3fb20a8ceffe41a1e949d24d92ede4
|
|
@@ -2,7 +2,7 @@ module Fastlane
|
|
|
2
2
|
module Actions
|
|
3
3
|
class TelegramAction < Action
|
|
4
4
|
def self.run(params)
|
|
5
|
-
UI.message("
|
|
5
|
+
UI.message("Sending message to a telegram channel")
|
|
6
6
|
|
|
7
7
|
token = params[:token]
|
|
8
8
|
chat_id = params[:chat_id]
|
|
@@ -37,7 +37,7 @@ module Fastlane
|
|
|
37
37
|
type: String),
|
|
38
38
|
FastlaneCore::ConfigItem.new(key: :chat_id,
|
|
39
39
|
env_name: "TELEGRAM_CHAT_ID",
|
|
40
|
-
description: "Unique identifier for the target chat
|
|
40
|
+
description: "Unique identifier for the target chat (not in the format @channel). For getting chat id you can send any message to your bot and get chat id from response https://api.telegram.org/botYOUR_TOKEN/getupdates",
|
|
41
41
|
optional: false,
|
|
42
42
|
type: String),
|
|
43
43
|
FastlaneCore::ConfigItem.new(key: :text,
|