fastlane-plugin-stream_actions 0.3.33 → 0.3.34
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 551be67fcf9e6c22cd8cc6fbf25d0c3ca45c2639105532f562de8d1bef8ed46c
|
|
4
|
+
data.tar.gz: 5b89195b7bfd9ee84a1dc4c0156bb14efff2108b9cb1c02c74180ba33f86baf2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9d2413d457f6ac7981ea22e6d9ab68934c0ab00b7cfa29fcd860d8d02f61a7cf91757ca7ff13f418f46ffb7f8e595a844c48ae546efca348b4b193da373a1ce
|
|
7
|
+
data.tar.gz: d9ef89c4552f0fc3a2a3a2db2cabb0523ff0355488af8a146fe75e531649611f17772fcdec57719604b1207a64c4c1e2bc7c44d08c27198543bf610fcd472771
|
|
@@ -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',
|
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.34
|
|
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
|
+
date: 2024-05-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xctest_list
|