github_repo_statistics 2.3.15 → 2.3.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/bin/github_repo_statistics +5 -1
- data/lib/github_repo_statistics/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35a2f4b839b1ec024faf1d3b360c2becdcb8242708d94a1d8d6c2213b6fcdccb
|
4
|
+
data.tar.gz: 814482d0ddfed7e45297826e8923bb88b32d7e99a38f2ee7792f967d2198c836
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d95e04e630f8b304d47e4bcabf17c54c0bec5431544f112fe42a9a3cdbed0dd2475b0f897bf69a9b42a10249b51da5a6a3e3b338b1a3b2c996beb0b2ecb6729
|
7
|
+
data.tar.gz: 69542e6a42ba3e8bb1c4bf81b4c692e1203507dc741f3ae3925ed0908d8fdb720ea33ecb5a43a0f9e2bb20c0139e2c5260c609df4e14df99af36d739dcd11ced
|
data/Gemfile.lock
CHANGED
data/bin/github_repo_statistics
CHANGED
@@ -170,7 +170,11 @@ if options[:hotspot_check]
|
|
170
170
|
begin_time: DateTime.now, steps: options[:steps].to_i, debug: options[:debug]).hotspot_check(files: branch_hotspot_files, branch: DEFAULT_BRANCH)
|
171
171
|
puts "master_hotspot_files = #{master_hotspot_files}"
|
172
172
|
|
173
|
-
|
173
|
+
if branch_hotspot_files.count > master_hotspot_files.count
|
174
|
+
message = "New hotspot was introduced, contact foundation to unblock the PR. Files: #{branch_hotspot_files - master_hotspot_files}"
|
175
|
+
File.write('./failure.txt', message)
|
176
|
+
raise message
|
177
|
+
end
|
174
178
|
else
|
175
179
|
system("git checkout #{DEFAULT_BRANCH}", [:out] => File::NULL)
|
176
180
|
system('git pull', %i[out err] => File::NULL)
|