git_release_notes 0.0.2 → 0.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: ccc639c1004b90bb255c80fb7a23bb436c8df2b9407b56380d1c1c64d906e104
|
4
|
+
data.tar.gz: 6b3a51d00a9e0b04d59001054c236cf2b5aad4ada74c6575e42415b951ea42d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a55108483314f22b73722b0b3272c94cb31c08c05c8c935cf99ca8a505ec16af01a3f6a7be9d5c973472aace29c47f4f4008cb445e8eca5da5565fbc5f7bd91
|
7
|
+
data.tar.gz: 886d2f87ae0099a2fcffb0af7dc69dadb23dc3feea112b0634d24de317a12bf0372682753d0529b2acd64b6f8647a863df641235779d18c831cae620f7270ff5
|
@@ -21,8 +21,6 @@ module GitReleaseNotes
|
|
21
21
|
def issue_from_jira_response(issue, response_body)
|
22
22
|
json_issue = JSON.parse(response_body)
|
23
23
|
issue.jira_summary = json_issue.summary
|
24
|
-
puts "issue_from_jira_response"
|
25
|
-
puts issue
|
26
24
|
issue
|
27
25
|
end
|
28
26
|
|
@@ -38,7 +36,7 @@ module GitReleaseNotes
|
|
38
36
|
end
|
39
37
|
|
40
38
|
def basic_auth
|
41
|
-
pass = ENV['JIRA_API_TOKEN'] || ENV['
|
39
|
+
pass = ENV['JIRA_API_TOKEN'] || ENV['JIRA_PASSWORD']
|
42
40
|
|
43
41
|
{
|
44
42
|
:username => ENV['JIRA_USERNAME'],
|
@@ -11,13 +11,9 @@ module GitReleaseNotes
|
|
11
11
|
issue = IssueEntry.new
|
12
12
|
issue.issue_no = m[:key]
|
13
13
|
issue.git_message = m[:git_message]
|
14
|
-
puts "Issue"
|
15
|
-
puts issue
|
16
14
|
issue_fill_from_jira(issue)
|
17
15
|
issue
|
18
16
|
end
|
19
|
-
puts "Messages"
|
20
|
-
puts messages
|
21
17
|
messages
|
22
18
|
end
|
23
19
|
|