fastlane-plugin-microsft_teams_message_card 0.1.0 → 0.1.01

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2120d43dc06a5e2f3cd9f7b6ce8e75eeac85393357a5fc4dc53ac9d7a5ce2fce
4
- data.tar.gz: ef24533e87ff5ece97780ad27d457c1560688c7204ef726ddc57fcb37be55e04
3
+ metadata.gz: 40a7366c46866593c5bcc03c9ab2ac00b539b9b89fab2522f9cea79b710d151b
4
+ data.tar.gz: 0f5642720de34208fbb53bbf19fae5aee786f5d662f964823ea4598df547bf5c
5
5
  SHA512:
6
- metadata.gz: 7e8dc342ea17c261ecf2fee3757f159d1a551fc606a5ff2a1130559ecb9b5ec0428b71177569f04345c5876a27b570d15eb55c93fb5d60ac1520de80faeac3dc
7
- data.tar.gz: d2949f7d92037046db27940115274467a5bc7e54fe88db8be7939171fecf9d9bf51c750d78d113c774ffdc4c15c44451cae9848d069747f593c014d526e9ceba
6
+ metadata.gz: ed94ac4a2b73e4860e5d42a588003026df49843615de2e5990c791dc564acedef7a8fca86a620fd50f5491b3dfd9ef64548ccf29e06b63938af2ca0a001040b1
7
+ data.tar.gz: 734957b7752a4c3acc2abe4954cf76f9755e06556eb16f6135b3c8b85f673faf16df9cbe91ab9a47a87aefe232f9bf969efc5563ea1af2c3988692c04a58a5b5
data/README.md CHANGED
@@ -18,10 +18,40 @@ Send a message card to your Microsoft teams channel
18
18
 
19
19
  ## Example
20
20
 
21
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
-
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
-
21
+ ```
22
+
23
+ microsft_teams_message_card(
24
+ title: "test title",
25
+ summary: "test summary",
26
+ text: "test text",
27
+ activity_title: "test activity_title",
28
+ activity_subtitle: Time.now.strftime("%d/%m/%Y %H:%M"),
29
+ activity_image: "test activity_image (must be start with https)",
30
+ theme_color: 8e8e93,
31
+ facts:[
32
+ {
33
+ "name"=>"Platform",
34
+ "value"=> ios
35
+ }
36
+ ],
37
+ potential_action:[
38
+ {
39
+ "@type": "OpenUri",
40
+ "name": "View in TEST",
41
+ "targets": [
42
+ {
43
+ "os": "default",
44
+ "uri": "https://github.com/cheignon/fastlane-plugin-microsft_teams_message_card/edit/main/README.md"
45
+ }
46
+ ]
47
+ },
48
+ ...
49
+ ],
50
+ teams_url: "https://outlook.office.com/webhook/..."
51
+ )
52
+ ```
53
+
54
+ for type in the array of potential_action field don't forget to add "@type" else doesn't work
25
55
  ## Run tests for this plugin
26
56
 
27
57
  To run both the tests, and code style validation, run
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module MicrosftTeamsMessageCard
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.01"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-microsft_teams_message_card
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.01
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dorian Cheignon