fastlane-plugin-stream_actions 0.1.18 → 0.1.19

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: e8aedf213b38a187944b2dce1a10bf6e01a16c1d1a41c2a5ff1aeac786001efb
4
- data.tar.gz: 39abbf45af37a5c33a4fba0d25f41b66c7416dde5e30290cb614f1c03f2dcc9e
3
+ metadata.gz: 7036b906f218b2b7edf62c58727acf6b1676c1d843fc51980b5c82fa83ba3454
4
+ data.tar.gz: 543be4987c03ee0ea18eb75920c55dbdf1f539ae79d622cfc1bbb35fee712610
5
5
  SHA512:
6
- metadata.gz: b189951490a9e95b4534460c6fbbb408472394c8db19ce98b2892ba08b1562ad71b6a3e3a7b03bddfd6ba208855b457afa0b210a0d3136d593c651ef192c6e2d
7
- data.tar.gz: 5229f877e3b325785025148182500bada877d9bc46e4c3f0a7612264699438649bc07950c90223e82185efb0758153d1e15457e316dbacc42a27cc3fd90ba6aa
6
+ metadata.gz: 36bfaf38e255b86cea9abf0d65412cd460221287b336b75c111f06998f2212c9f7999b5dabfa4cbebd774a4fb1d1e4ed5efdf21dd63334b693dbc776ccad975d
7
+ data.tar.gz: bbfd06f46a23bc2474882bc522dd9ad7e4e014270ce9df543fefe0e4042b77f261e23841d4c8ebff934565bea70f87d916d685dac95c127869f34ede0fd97ab3
@@ -2,7 +2,7 @@ module Fastlane
2
2
  module Actions
3
3
  class IsCheckRequiredAction < Action
4
4
  def self.run(params)
5
- return true if params[:github_pr_num].nil? || params[:github_pr_num].empty?
5
+ return true if params[:github_pr_num].nil? || params[:github_pr_num].strip.empty?
6
6
 
7
7
  UI.message("Checking if check is required for PR ##{params[:github_pr_num]}")
8
8
 
@@ -34,7 +34,7 @@ module Fastlane
34
34
  changelog: testflight_instructions(params)
35
35
  )
36
36
 
37
- if params[:github_pr_num]
37
+ if params[:github_pr_num] && !params[:github_pr_num].strip.empty?
38
38
  message = "Build for regression testing №#{build_number} has been uploaded to TestFlight 🎁"
39
39
  sh("gh pr comment #{params[:github_pr_num]} -b '#{message}'")
40
40
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = "0.1.18"
3
+ VERSION = "0.1.19"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream