fastlane-plugin-stream_actions 0.3.33 → 0.3.35

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: 055f468bc9af31c8e6ffe391b6f28eec70f6fc6596d965b5d3012b173bc9b1ae
4
- data.tar.gz: 1f419f80ee7a3183f9c9ff219d619accba13f846de35b68f471352ef873bbfd2
3
+ metadata.gz: 36d2e9394eba6e29801183387007acb61a941f6fa4c1f5c340e30f10b44c56de
4
+ data.tar.gz: 5d0994b8fdcdc2a2b6614dc8dca0a3c4d20c77115dbbfd47838d958bd51def0b
5
5
  SHA512:
6
- metadata.gz: c73923ad3e698f1409183b67805d044308b7f73c0a0c9b3201783cf441863e4e200195571c5574eb1e9dc3ba6d506164db4ebed0c4e44997d24b95de749f394c
7
- data.tar.gz: 314cf4b5e18d8fe2db94ca18fda15c4ec0ed6e6c419ae76979b996bd1a2735270e991bf17c178912e3f83ae7f0683ee17625d18220d107535c9bb94ced49790a
6
+ metadata.gz: 3a408b1ef0525eff7d5d941cc9448c8e1e834d88c8fe58a3d8f0bef8f69eaa26eb97d57efc993135098ae269a94649321530b3d936a7d97d5298a16f517e9650
7
+ data.tar.gz: ecb1afeca948b69ca3eb181b337d3fa737d88571bf37bc35b87187f4011fe4aa5068d9324ac3d876cc141caeb00ecee4851d950c8e5db67e6e6fd78d967bb8e8
@@ -31,7 +31,7 @@ module Fastlane
31
31
  end
32
32
 
33
33
  def self.ensure_everything_is_set_up(params)
34
- other_action.ensure_git_branch(branch: 'main')
34
+ other_action.ensure_git_branch(branch: 'main') unless params[:skip_branch_check]
35
35
  other_action.ensure_git_status_clean unless params[:skip_git_status_check]
36
36
  end
37
37
 
@@ -88,6 +88,12 @@ module Fastlane
88
88
  key: :github_token,
89
89
  description: 'GITHUB_TOKEN environment variable'
90
90
  ),
91
+ FastlaneCore::ConfigItem.new(
92
+ key: :skip_branch_check,
93
+ description: 'Skip branch check',
94
+ is_string: false,
95
+ optional: true
96
+ ),
91
97
  FastlaneCore::ConfigItem.new(
92
98
  key: :skip_git_status_check,
93
99
  description: 'Skip git status check',
@@ -70,11 +70,7 @@ module Fastlane
70
70
 
71
71
  def self.commit_changes(version_number)
72
72
  sh("git add -A")
73
- UI.user_error!("Not committing changes") unless other_action.prompt(text: "Will commit changes. All looking good?", boolean: true)
74
-
75
73
  sh("git commit -m 'Bump #{version_number}'")
76
- UI.user_error!("Not pushing changes") unless other_action.prompt(text: "Will push changes. All looking good?", boolean: true)
77
-
78
74
  other_action.push_to_git_remote(tags: false)
79
75
  end
80
76
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.33'
3
+ VERSION = '0.3.35'
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.33
4
+ version: 0.3.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-25 00:00:00.000000000 Z
11
+ date: 2024-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xctest_list