fastlane-plugin-dingtalk_notice_push 0.0.1 → 0.0.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
  SHA256:
3
- metadata.gz: e8ac7a844e6d22849c5c159beaeaeceadc0e53b5fb72a767e4e43e46e874cc42
4
- data.tar.gz: 122dcf8d1a99f63695e814e76c88eb47ff710e96fcd2a3bd11f6f0baad7518cc
3
+ metadata.gz: 13a2d3dcb8a562b0f1dd059de5110f76916dc1621468eb682e88cc39da7033ed
4
+ data.tar.gz: 5d437a30e19141d97828ace241d0b8515cb19bf8d51a71f92b8de02e487ac581
5
5
  SHA512:
6
- metadata.gz: 4bc3dfcb0f2975e17f7f9ee9d6dc144caabbb91bd51da3c43893fe0db17d32efeac6dda7eb0a9f456ffb990a48d69fe5d953eda49f18fde13489148dd4a9d2ea
7
- data.tar.gz: c8c20f08adc7957747163e203858129422762d6ac0d377ea31f00c11be5da51640dcd97e4c59489c3ad4a2949dac09d1347aaac706df90d9f2b02a11b1f43f24
6
+ metadata.gz: f2ccd36ae250b3a618a8fc9335c606a7403f0e4aba39f0fb7a3d28e4eb1773d9c060eea809ab90c5c22aa263debb793aca093b3bee7afa91df21881500e0fbc0
7
+ data.tar.gz: f15003c8e1b15200e68a1c1c2737007df0b1c165cf6ee505c706fc7d396c3e5333d66b6d3eeac5e559ca4c006481529cc9d0c89c8ef8dcb59fe4f9a7bff2afe7
data/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # dingtalk_notice_push plugin
2
2
 
3
+ ## 部分功能参考自 [_fastlane-plugin-ding-talk_](https://github.com/Pircate/fastlane-plugin-ding-talk) by gaoxiang
4
+
5
+ ## 新增了is_at_all、at_mobiles和at_user_ids功能
6
+
7
+
3
8
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-dingtalk_notice_push)
4
9
 
5
10
  ## Getting Started
@@ -20,6 +25,17 @@ dingtalk_notice_push
20
25
 
21
26
  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
27
 
28
+ ```ruby
29
+ ding_talk_notice(
30
+ api_key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", # 蒲公英用户api_key
31
+ app_key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", # 蒲公英应用app_key
32
+ access_token: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", # 钉钉机器人access_token
33
+ is_at_all: true, # 是否@所有人
34
+ at_mobiles: ["xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"], # @手机号
35
+ at_user_ids: ["xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"],# @用户ID
36
+ markdown_desc: "### App安装二维码") # 二维码描述(markdown格式)
37
+ ```
38
+
23
39
  **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
40
 
25
41
  ## Run tests for this plugin
@@ -7,7 +7,7 @@ module Fastlane
7
7
  def self.run(params)
8
8
  UI.message("The dingtalk_notice_push plugin is working!")
9
9
 
10
- api_key = params[:api_key]
10
+ api_key = params[:api_key]
11
11
  app_key = params[:app_key]
12
12
  access_token = params[:access_token]
13
13
  markdown_desc = params[:markdown_desc]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module DingtalkNoticePush
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-dingtalk_notice_push
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
- - WZY
7
+ - TravelFish
8
8
  bindir: bin
9
9
  cert_chain: []
10
10
  date: 2025-09-26 00:00:00.000000000 Z
@@ -146,6 +146,7 @@ files:
146
146
  - lib/fastlane/plugin/dingtalk_notice_push/actions/dingtalk_notice_push_action.rb
147
147
  - lib/fastlane/plugin/dingtalk_notice_push/helper/dingtalk_notice_push_helper.rb
148
148
  - lib/fastlane/plugin/dingtalk_notice_push/version.rb
149
+ homepage: https://github.com/zxc120301945/fastlane-plugin-dingtalk_notice_push.git
149
150
  licenses:
150
151
  - MIT
151
152
  metadata: