fastlane-plugin-jira_set_feature_build 1.0.2 → 1.0.3
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: 6b7703752c7a564e89a1c315c09d4aa6dba68acb31587a750744fa94eae862a9
|
4
|
+
data.tar.gz: ebb4b62d96f498993898592cc8d9625b0a5e09ec52e409a6b4e2ff5f9cdeda9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dedc6a42830e4cd8968f3a8190eb2a952d1ca630ceb6856b6fa7f77ead7a40667d82b709e80349071ba87a034751ccafef20c83bf4904505a9cfa8fa2059357
|
7
|
+
data.tar.gz: a7d2b317f444f06d04c15888baf38afe25538c60d921993f703a433abd52c74b9aefce33b3e00c6ac0123a05175fc19623a9bf85f041230892114a38a5ef39c9
|
@@ -86,6 +86,10 @@ module Fastlane
|
|
86
86
|
["Tommy Sadiq Hinrichsen", "Brandon McAnsh"]
|
87
87
|
end
|
88
88
|
|
89
|
+
def self.is_supported?(platform)
|
90
|
+
true
|
91
|
+
end
|
92
|
+
|
89
93
|
def self.return_value
|
90
94
|
"Return the URL of the feature build"
|
91
95
|
end
|
@@ -135,14 +139,14 @@ module Fastlane
|
|
135
139
|
description: "The url of the feature build from the CI job",
|
136
140
|
type: String,
|
137
141
|
verify_block: proc do |value|
|
138
|
-
UI.user_error!("No
|
142
|
+
UI.user_error!("No URL given, pass using `feature_build_url: 'http://someurl'`") unless value and !value.empty?
|
139
143
|
end),
|
140
144
|
FastlaneCore::ConfigItem.new(key: :ticket_reference,
|
141
145
|
env_name: "FL_CREATE_JIRA_TICKET_REFERENCE",
|
142
146
|
description: "The ticket reference on JIRA",
|
143
147
|
type: String,
|
144
148
|
verify_block: proc do |value|
|
145
|
-
UI.user_error!("No
|
149
|
+
UI.user_error!("No ticket reference given, pass using `ticket_reference: 'APPS-1234'`") unless value and !value.empty?
|
146
150
|
end),
|
147
151
|
]
|
148
152
|
end
|