fastlane-plugin-stream_actions 0.3.73 → 0.3.74

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: b2fa982e3423bbbaede57cb7a7d663c305551886f5fda63c2fcaecef1285f931
4
- data.tar.gz: 6ae0da03d2782fc4555fd834b44bee53a1c617a8e4a5363e148d6c35b650ab0a
3
+ metadata.gz: c278ff7f086417f131842bd97dd61cbabc038c74fa163b6a71f06f22240666f0
4
+ data.tar.gz: 3207174d51b7a4010da3e2697fd8fa58fe1560892231aa19c2ea55c57699a2c3
5
5
  SHA512:
6
- metadata.gz: d70f251404ac81dd4e8c0c245a7ca1b34d7da710bf2dee7b89ae1763d1cd02e40bd43fc3ecb89360e46e81487c521f04a51a8bd42403cf42fc4241762174f086
7
- data.tar.gz: 3f5bfe55267955c8dc7a9df6e8da713c81881cac42b8bd9da97d57a8fb7d44551e4add99dfe94020c6c26486221f8ee8ea1029f106a731eaf42ca9284d0c76d2
6
+ metadata.gz: 642cce9d60712c28b13515b5374253cb58953b0347d85149b517bbf1424f2609282a226a433037475070c8e4c949b81c87f832018ec20e2fdfe8dd06e80677b0
7
+ data.tar.gz: 78422d41597582a370a18f8151d75df4e3f00f7970644c2f5b8c4e14eaef148c862f9e15fda26868b7137ce387eff1f9647ff59e72fcd0e3f6cd66cea596b199
data/README.md CHANGED
@@ -1,3 +1,8 @@
1
+ > ## Want to add chat to your app?
2
+ >
3
+ > [Stream](https://getstream.io/chat/) powers chat for over 1 billion end-users. Get started with our free chat API trial.
4
+
5
+
1
6
  # Stream Fastlane Actions
2
7
 
3
8
  ## Getting Started
@@ -8,13 +8,19 @@ module Fastlane
8
8
 
9
9
  changed_files = Actions.sh("gh pr view #{params[:github_pr_num]} --json files -q '.files[].path'").split("\n")
10
10
 
11
- return true if changed_files.size == 100 # TODO: https://github.com/cli/cli/issues/5368
11
+ too_many_files = changed_files.size > 99 # TODO: https://github.com/cli/cli/issues/5368
12
+ if too_many_files
13
+ UI.important("Check it required because there were too many files changed.")
14
+ return true
15
+ end
12
16
 
13
17
  changed_files.select! do |path|
14
18
  params[:sources].any? { |required| path.start_with?(required) }
15
19
  end
16
20
 
17
- changed_files.size.positive?
21
+ is_check_required = changed_files.size.positive?
22
+ UI.important("Check is required: #{is_check_required}")
23
+ is_check_required
18
24
  end
19
25
 
20
26
  #####################################################
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.73'
3
+ VERSION = '0.3.74'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.73
4
+ version: 0.3.74
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-04 00:00:00.000000000 Z
11
+ date: 2024-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xctest_list