fastlane-plugin-jira_issues_release_notes 0.3.0 → 0.3.5
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: 231d9a7ac7864f73453eaabe86145af7dbf8878c3d88a04abb515469bb4171d4
|
4
|
+
data.tar.gz: 979a99a94e15c89c9ac0226c597f890ec59039c612b517f64f5429b3ae6dd912
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3acdab6116521ba658598463b8b3ff9a55479b565ae57aa6c9efe66f5a14c958bb053fa3d90c8c5b9b46b22821fd715d46c59f0b796d213410b1205cc70f8a73
|
7
|
+
data.tar.gz: 4988d48dfabc272793a3bcbd7923d8e1fe91e8cd0e1ed02f88b122888b60eff1c5e7ce5afa9d6ba5a6c652b1c11b05f126516935797c2e303b6652ee59872e9f
|
data/lib/fastlane/plugin/jira_issues_release_notes/actions/jira_issues_release_notes_action.rb
CHANGED
@@ -80,10 +80,10 @@ module Fastlane
|
|
80
80
|
to_validate = issues.select { |issue| params[:to_validate_status].include?(issue.status.name) }
|
81
81
|
validated = issues.select { |issue| params[:validated_status].include?(issue.status.name) }
|
82
82
|
|
83
|
-
generate_changelog(to_validate: to_validate, validated: validated, format: params[:format]
|
83
|
+
generate_changelog(to_validate: to_validate, validated: validated, format: params[:format])
|
84
84
|
end
|
85
85
|
|
86
|
-
def self.generate_changelog(to_validate:, validated:, format
|
86
|
+
def self.generate_changelog(to_validate:, validated:, format:)
|
87
87
|
changelog = []
|
88
88
|
changelog.concat(format_issues(label: 'Tasks to validate', issues: to_validate, format: format)) unless to_validate.empty?
|
89
89
|
changelog.concat(['']) unless changelog.to_s.empty?
|
@@ -197,13 +197,6 @@ module Fastlane
|
|
197
197
|
description: "To parse version number from tag name",
|
198
198
|
default_value: '\d+\.\d+\.\d+'
|
199
199
|
),
|
200
|
-
FastlaneCore::ConfigItem.new(
|
201
|
-
key: :build_url,
|
202
|
-
env_name: 'FL_RELEASE_NOTES_BUILD_URL',
|
203
|
-
description: 'Link to the ci build',
|
204
|
-
optional: true,
|
205
|
-
default_value: ENV['BUILD_URL']
|
206
|
-
),
|
207
200
|
FastlaneCore::ConfigItem.new(
|
208
201
|
key: :validated_status,
|
209
202
|
env_name: 'FL_JIRA_VALIDATED_STATUS',
|
@@ -238,7 +231,7 @@ module Fastlane
|
|
238
231
|
FastlaneCore::ConfigItem.new(
|
239
232
|
key: :password,
|
240
233
|
env_name: 'FL_JIRA_PASSWORD',
|
241
|
-
description: 'Jira user',
|
234
|
+
description: 'Jira user password',
|
242
235
|
optional: false
|
243
236
|
),
|
244
237
|
FastlaneCore::ConfigItem.new(
|