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: 6eb6df9a2ea119114a9735fe6fdb32074d0ef8538b84ef554b603a92e27b677c
4
- data.tar.gz: f5188899ce8c2e34060ca00031f0a0125ff2a39c4f90ee681182ef06a9c79028
3
+ metadata.gz: 4763e6b22d3fd19a97d2c5f30c5fe602096295c77a74403206715132c7e9aaf0
4
+ data.tar.gz: f9a2737ea35ef2f55e716f6a9bdb9c9e57c412ce2b6b1aa2e498ee436e7d95b1
5
5
  SHA512:
6
- metadata.gz: 0bdc8a6662b9d8cf4db2d0b9405f5bb90aaa3c9eff05cff2288904c5a55b544b8ebac415a8d67bd4baa07ec7d434e5c35756c6ddcd1b0a268f5d18ec75ec554c
7
- data.tar.gz: f0a8d09f1424eeb7c378c2b1e07a74a9128a06f2baad2dc6a120f04ea07a660265724144699e7b13b212618fc27049b53659be014dadab9e23c35cdd5feb91cf
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["title"],
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",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Teamsx
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-teamsx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ankun