fastlane-plugin-stream_actions 0.3.73 → 0.3.74
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c278ff7f086417f131842bd97dd61cbabc038c74fa163b6a71f06f22240666f0
|
4
|
+
data.tar.gz: 3207174d51b7a4010da3e2697fd8fa58fe1560892231aa19c2ea55c57699a2c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 642cce9d60712c28b13515b5374253cb58953b0347d85149b517bbf1424f2609282a226a433037475070c8e4c949b81c87f832018ec20e2fdfe8dd06e80677b0
|
7
|
+
data.tar.gz: 78422d41597582a370a18f8151d75df4e3f00f7970644c2f5b8c4e14eaef148c862f9e15fda26868b7137ce387eff1f9647ff59e72fcd0e3f6cd66cea596b199
|
data/README.md
CHANGED
@@ -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
|
-
|
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
|
#####################################################
|
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.
|
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-
|
11
|
+
date: 2024-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: xctest_list
|