fastlane-plugin-teamsx 0.1.1 → 0.1.3
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4763e6b22d3fd19a97d2c5f30c5fe602096295c77a74403206715132c7e9aaf0
|
4
|
+
data.tar.gz: f9a2737ea35ef2f55e716f6a9bdb9c9e57c412ce2b6b1aa2e498ee436e7d95b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fcc8e16421a34b0d4a1ada68023e9d1f23f7d65aa419398e1319b264b9fae109d426db511823d13bfee028880c7b2461dd69aaee596ad922bf67641241b44023
|
7
|
+
data.tar.gz: cf8e0f2b8975d6bb87974f210644e9663f00ed61533383b423cf12ded1b06bdd9a01c7edb8695a4087720053eaba896c2b70fc51bb927f37d0728b5a070670eb
|
@@ -27,7 +27,7 @@ module Fastlane
|
|
27
27
|
# Build facts
|
28
28
|
facts = (params[:facts] || []).map do |fact|
|
29
29
|
{
|
30
|
-
"title" => fact["
|
30
|
+
"title" => fact["name"],
|
31
31
|
"value" => fact["value"]
|
32
32
|
}
|
33
33
|
end
|
@@ -124,6 +124,23 @@ module Fastlane
|
|
124
124
|
FastlaneCore::ConfigItem.new(key: :message,
|
125
125
|
env_name: "FL_TEAMS_MESSAGE",
|
126
126
|
description: "The message that should be displayed on Teams. This supports the standard Teams markup language"),
|
127
|
+
FastlaneCore::ConfigItem.new(key: :main_title,
|
128
|
+
env_name: "FL_TEAMS_MAIN_TITLE",
|
129
|
+
description: "The main title that should be displayed on Teams (preferred over :title if both are provided)",
|
130
|
+
optional: true),
|
131
|
+
FastlaneCore::ConfigItem.new(key: :body,
|
132
|
+
env_name: "FL_TEAMS_BODY",
|
133
|
+
description: "The main body text of the message (preferred over :message if both are provided)",
|
134
|
+
optional: true),
|
135
|
+
FastlaneCore::ConfigItem.new(key: :subtitle,
|
136
|
+
env_name: "FL_TEAMS_SUBTITLE",
|
137
|
+
description: "An optional subtitle for the Teams message",
|
138
|
+
optional: true),
|
139
|
+
FastlaneCore::ConfigItem.new(key: :mentions,
|
140
|
+
env_name: "FL_TEAMS_MENTIONS",
|
141
|
+
description: "Array of mentions to include in the message (each should be a hash with 'at_text', 'id', and 'name')",
|
142
|
+
type: Array,
|
143
|
+
optional: true),
|
127
144
|
FastlaneCore::ConfigItem.new(key: :facts,
|
128
145
|
type: Array,
|
129
146
|
env_name: "FL_TEAMS_FACTS",
|