pr_releasenotes 0.0.1 → 0.0.2

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: 950d6b6e778e173335598ed4574806b6bbd3db28575eccf5a3c40d33fac844c7
4
- data.tar.gz: 9cd54bffe0f6d5ea60c3058f7e3cba1e7b09f29fe14da8f532398f24937f5ce0
3
+ metadata.gz: 78e490c7b05492ae9c389da01992071a95f386cd79e58775ca150207ed343217
4
+ data.tar.gz: 4d076be623487de18e41bd0d65267333c2925d18f5f70d4b256f14c14ab6bb8f
5
5
  SHA512:
6
- metadata.gz: fb18ff14b3a0a87bbe379d4a8c4b5abedd6ece5d660d147af49b8caddbd3ee18c81a6d0dad566111a71a5939086ae313bdd215da48c13cb3ceff19799bc076a4
7
- data.tar.gz: 2f12d003a12abdb59025ea5d1e200b16625548d85c141d5ba18f7d804df47e7a2c96316e63e7e2b9c028550949d8dc883532e5ac7ce498b36dfe2763040757c0
6
+ metadata.gz: 02ada146643812fc9c0bb24610ab7b093c7c70560451a2922bce31fb4861bbcffbacdb922fc9edcb4866e71857a3a2dc195a769871bc044dc5446a1289d4df3a
7
+ data.tar.gz: 85a5b2df377cc5974d2a834110da4bca1bf62c18aad92077825cc4994b111c44d8cab34eddf4f4f3c9d1f9d5b75026b2dff54834465bf36c1f8a11c7b3c690cf
data/README.md CHANGED
@@ -10,11 +10,11 @@ will generate release notes from your latest release tag to the tip of the maste
10
10
 
11
11
  ## Why this tool vs others
12
12
 
13
- There are quite a few online tools for generating release notes based on github history, but all the ones I've found rely on commit messages. This makes them inflexible, since it would require rewriting commit history in order to make any changes to the generated notes.
13
+ There are quite a few online tools for generating release notes based on github history, but all the ones I've found rely on commit messages. This makes them inflexible, since it would require rewriting commit history in order to make any changes to the generated notes. In addition, using commit messages forces irrelevant information such as `fixed typo`, `reverted incorrect commit`, and `updated tests/docs` into the release notes.
14
14
 
15
- This tool uses the pull request descriptions, so the release notes for any version can be updated at any time by simply updating the corresponding pull request's description and rerunning this tool.
15
+ This tool uses pull request descriptions, so the release notes for any version can be updated at any time by simply updating the corresponding pull request's description and rerunning this tool. In addition, pull request descriptions can have a separate brief and focused section to expose only the necessary information into the release notes.
16
16
 
17
- Secondly, this tool provides the additional option to post the release notes back to the github releases page.
17
+ Finally, this tool provides the additional option to post the release notes back to the github releases page.
18
18
 
19
19
  ## Installation
20
20
 
@@ -34,28 +34,26 @@ Or install it yourself as:
34
34
 
35
35
  ## Usage
36
36
 
37
- The minimum configuration necessary to run the tool is the repo, github token and a start release tag:
37
+ The minimum configuration necessary to run the tool is the repo, github token and a starting tag or commit sha:
38
38
 
39
- $ pr_releasenotes --repo <user/repo> --token <token> --start <latest_tagged_release>
39
+ $ pr_releasenotes --repo <user/repo> --token <token> --start <start_tag|sha>
40
40
 
41
- Additional options can be specified either by passing a yaml configuration to the included executable:
41
+ Additional options can be specified either by passing a yaml configuration to the executable:
42
42
 
43
- $ pr_releasenotes --config <config.yaml> --token <token> --start <start_version> --end <end_version> --branch <non-default branch>
43
+ $ pr_releasenotes --config <config.yaml> --token <token> --start <start_tag|sha> --end <end_tag|sha> --branch <non-default branch>
44
44
 
45
45
  or by invoking the gem directly from ruby code:
46
46
 
47
47
  ```ruby
48
48
  require 'pr_releasenotes'
49
49
 
50
- include PrReleasenotes
51
-
52
50
  PrReleasenotes.configure do |config|
53
51
  config.repo('user/repo')
54
52
  config.token('github_token')
55
53
  config.parse_args(ARGV)
56
54
  end
57
55
 
58
- ReleaseNotes.new.run
56
+ PrReleasenotes.run
59
57
  ```
60
58
 
61
59
  Get a brief usage summary by running
@@ -65,6 +63,27 @@ Get a brief usage summary by running
65
63
 
66
64
  See the [examples folder](examples) for some sample yaml configuration files.
67
65
 
66
+ ### Running as part of a release build
67
+
68
+ This tool can be invoked right after a release build to automatically add release notes to a newly created release.
69
+
70
+ #### Regular releases
71
+
72
+ For regular releases where a previous release already exists, and a new release is being created, this tool can be invoked after the release is built by using the following form:
73
+
74
+ $ pr_releasenotes --repo <user/repo> --token <token> --end <current_release_tag>
75
+
76
+ The tool will set the start_tag to the latest tagged release prior to the current one and generate release notes from that release to the current one.
77
+
78
+ #### Initial release
79
+
80
+ For the initial release from a repo, there is no previous release, so the tool must be run with an explicit start sha or tag:
81
+
82
+ $ pr_releasenotes --repo <user/repo> --token <token> --start <commit_sha> --end <current_release_tag>
83
+
84
+ Both the `--start` and `--end` parameters support sha values as well as tags, so release notes can be generated between any two tags or commits.
85
+
86
+
68
87
  ### Github token permissions
69
88
 
70
89
  This tool does require a github token since it accesses the github api. However any token created should have only as many, or rather as few, permissions as needed.
@@ -4,7 +4,7 @@
4
4
  #
5
5
 
6
6
  # Name of your repo in user/repo format
7
- repo:
7
+ # repo:
8
8
 
9
9
  # Release notes parsing options. Note that comments will always get stripped
10
10
 
@@ -14,6 +14,7 @@ relnotes_group: 1 # group to capture from the regex
14
14
 
15
15
  # Enable categorization
16
16
  categorize: true
17
+ relnotes_hdr_prefix: '### '
17
18
 
18
19
  # Update to your own jira server
19
20
  jira_baseurl: 'https://issues.apache.org/jira/browse/'
@@ -1,5 +1,6 @@
1
1
  #
2
- # Sample configuration containing default configuration values
2
+ # Sample configuration containing default values.
3
+ # At least one of the following options must be uncommented to use this configuration file
3
4
  #
4
5
 
5
6
  # Name of your repo in user/repo format. Defaults to nil and must be overridden in the yaml or on the cmd line.
@@ -8,19 +9,19 @@
8
9
  # Release notes will be pulled from PRs merged to this branch. Defaults to master.
9
10
  # branch: master
10
11
 
11
- # Version range from which release notes should be gathered
12
+ # Tag range from which release notes should be gathered
12
13
 
13
- # Extract pull requests starting from this version. Defaults to nil for latest published release. Override if
14
+ # Extract pull requests starting from this tag. Defaults to nil for latest published release. Override if
14
15
  # there are no published releases yet.
15
16
  # Note: Although this parameter is listed here for completeness, this will likely be specified on the cmd line
16
17
  # since its value will vary with each release.
17
- # start_version:
18
+ # start_tag:
18
19
 
19
20
  # Defaults to nil for latest commit. nil will also skip the creation of a github release
20
- # end_version:
21
+ # end_tag:
21
22
 
22
23
  # If all your tags have a common prefix, add that here, and use just the varying suffix as the
23
- # start/end version arguments. Defaults to blank.
24
+ # start/end tag arguments. Defaults to blank.
24
25
  # tag_prefix:
25
26
 
26
27
  # Short sha uniqueness threshold. Shas shorter than this may collide with other commits. When searching for
@@ -37,7 +38,9 @@
37
38
 
38
39
  # Release notes parsing options. Note that comments will always get stripped
39
40
 
40
- # By default, the entire PR description will be used.
41
+ # By default, only the PR titles will be used, so match nothing from the description
42
+ # relnotes_regex: '/.\A/'
43
+ # To use the entire PR description instead
41
44
  # relnotes_regex: '/.*/m'
42
45
 
43
46
  # group to capture from the above regex
@@ -56,7 +59,7 @@
56
59
  # category_default: '<!--99-->Other'
57
60
 
58
61
  # Add a prefix to the release notes items
59
- # relnotes_hdr_prefix: '### '
62
+ # relnotes_hdr_prefix: '* '
60
63
 
61
64
 
62
65
  # Optional jira url to auto link all strings matching a jira ticket pattern
data/exe/pr_releasenotes CHANGED
@@ -2,10 +2,8 @@
2
2
 
3
3
  require 'pr_releasenotes'
4
4
 
5
- include PrReleasenotes
6
-
7
5
  PrReleasenotes.configure do |config|
8
6
  config.parse_args(ARGV)
9
7
  end
10
8
 
11
- ReleaseNotes.new.run
9
+ PrReleasenotes.run
@@ -21,7 +21,7 @@ module PrReleasenotes
21
21
  require 'to_regexp'
22
22
  require "pr_releasenotes/version"
23
23
 
24
- attr_accessor :repo, :token, :tag_prefix, :min_sha_size, :start_version, :end_version,
24
+ attr_accessor :repo, :token, :tag_prefix, :min_sha_size, :start_tag, :end_tag,
25
25
  :branch, :include_all_prs, :github_release, :relnotes_group,
26
26
  :categorize, :category_prefix, :category_default, :relnotes_hdr_prefix,
27
27
  :jira_baseurl, :auto_paginate, :log
@@ -39,9 +39,9 @@ module PrReleasenotes
39
39
  @tag_prefix = ''
40
40
  # Short sha uniqueness threshold. Shas shorter than this may collide with other commits
41
41
  @min_sha_size = 7
42
- # Version range from which release notes should be gathered
43
- @start_version = nil # nil for latest released version
44
- @end_version = nil # nil for latest commit. nil will skip the creation of a github release
42
+ # Tag range from which release notes should be gathered
43
+ @start_tag = nil # nil for latest released tag
44
+ @end_tag = nil # nil for latest commit. nil will skip the creation of a github release
45
45
  # Release notes will be pulled from PRs merged to this branch
46
46
  @branch = 'master'
47
47
  # Whether to include even PRs without explicit release notes
@@ -50,8 +50,8 @@ module PrReleasenotes
50
50
  @github_release = false
51
51
 
52
52
  # Release notes parsing options. Note that comments will always get stripped
53
- # Use .* with group 0 to use the entire PR description as the notes
54
- @relnotes_regex = /.*/m
53
+ # By default, only the PR titles will be used, so match nothing from the description
54
+ @relnotes_regex = /.\A/
55
55
  @relnotes_group = 0 # group to capture from the regex
56
56
 
57
57
  # Set categorization options
@@ -60,7 +60,7 @@ module PrReleasenotes
60
60
  # PRs without categories will get included into this default category
61
61
  @category_default = '<!--99-->Other'
62
62
  # Add a prefix to the release notes items
63
- @relnotes_hdr_prefix = '### '
63
+ @relnotes_hdr_prefix = '* '
64
64
 
65
65
  # Optional jira url to auto link all strings matching a jira ticket pattern
66
66
  # Set to nil to skip auto link
@@ -88,13 +88,17 @@ module PrReleasenotes
88
88
 
89
89
  opts.separator ''
90
90
  opts.on('-c', '--config <config.yaml>', 'Yaml configuration') do |config|
91
- YAML.load_file(config).each do |k, v|
92
- begin
93
- # Try calling public setter for this option
94
- public_send("#{k}=", v)
95
- rescue NoMethodError => e
96
- raise "#{e.message} caused by (#{config}) Invalid key '#{k}'"
91
+ begin
92
+ YAML.load_file(config).each do |k, v|
93
+ begin
94
+ # Try calling public setter for this option
95
+ public_send("#{k}=", v)
96
+ rescue NoMethodError => e
97
+ raise "#{e.message} caused by (#{config}) Invalid key '#{k}'"
98
+ end
97
99
  end
100
+ rescue StandardError => e
101
+ raise "Unable to parse #{config} caused by #{e.message}"
98
102
  end
99
103
  end
100
104
 
@@ -107,11 +111,11 @@ module PrReleasenotes
107
111
  end
108
112
 
109
113
  opts.separator ''
110
- opts.on('-s', '--start <version>', 'Get release notes from this version tag. (Default: latest release)') do |version|
111
- @start_version = version
114
+ opts.on('-s', '--start <tag|sha>', 'Get release notes starting from this tag or sha. (Default: latest release)') do |tag|
115
+ @start_tag = tag
112
116
  end
113
- opts.on('-e', '--end <version>', 'Get release notes till this version tag. (Default: latest commit, skips creating github release)') do |version|
114
- @end_version = version
117
+ opts.on('-e', '--end <tag|sha>', 'Get release notes till this tag or sha. (Default: latest commit, skips creating github release)') do |tag|
118
+ @end_tag = tag
115
119
  end
116
120
  opts.on('-b', '--branch <branchname>', 'Use pull requests to this branch. (Default: master)') do |branch|
117
121
  @branch = branch
@@ -138,6 +142,10 @@ module PrReleasenotes
138
142
  end
139
143
 
140
144
  opt_parser.parse!(args)
145
+ if @github_release && @end_tag.nil?
146
+ log.error "Cannot post to github without an end tag. Specify an end_tag or skip posting to github."
147
+ exit 1
148
+ end
141
149
  end
142
150
 
143
151
  end
@@ -1,3 +1,3 @@
1
1
  module PrReleasenotes
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -4,6 +4,10 @@ require "pr_releasenotes/configuration"
4
4
  # post to github releases
5
5
  module PrReleasenotes
6
6
 
7
+ def self.run
8
+ ReleaseNotes.new.run
9
+ end
10
+
7
11
  class ReleaseNotes
8
12
 
9
13
  require 'octokit'
@@ -25,76 +29,100 @@ module PrReleasenotes
25
29
  end
26
30
 
27
31
  def run
28
- # Infer start version if necessary
29
- set_start_version
30
- log.info "Retrieving release notes between #{config.start_version} and #{config.end_version.nil? ? 'now' : config.end_version} on branch #{config.branch}"
31
- # Get commits between versions
32
- commits_for_versions = get_commits_for_versions
32
+ # Infer start tag if necessary
33
+ set_start_tag
34
+ log.info "Retrieving release notes between #{config.start_tag} and #{config.end_tag.nil? ? 'now' : config.end_tag} on branch #{config.branch}"
35
+ # First get a list of all tags on github
36
+ get_all_tags
37
+ # Get commits between start and end tags
38
+ commits_for_tags = get_commits_for_tags
33
39
  # Get merged PRs for those commits
34
- prs = get_prs_for_commits(commits_for_versions)
40
+ prs = get_prs_for_commits(commits_for_tags)
35
41
  # Get release notes from those PRs
36
42
  notes_by_pr = get_releasenotes_for_prs(prs)
37
43
  # Convert to a single string
38
44
  notes_str = get_notes_str(notes_by_pr)
39
- log.info "Release Notes:\n\n#{notes_str}"
40
45
  # Optionally post to github as a new or updated release
41
- post_to_github(notes_str) if config.github_release
46
+ if config.github_release
47
+ post_to_github(notes_str)
48
+ else
49
+ log.info "Release Notes:\n\n#{notes_str}"
50
+ end
42
51
  end
43
52
 
44
- def set_start_version
45
- if config.start_version.nil?
46
- # If start version isn't set, try to infer from the latest github release
53
+ def get_all_tags
54
+ @all_tags = git_client.tags(config.repo)
55
+ end
56
+
57
+ def set_start_tag
58
+ if config.start_tag.nil?
59
+ # If start tag isn't set, try to infer from the latest github release
60
+
61
+ # First get the current tag or branch
62
+ tag_or_branch = config.end_tag.nil? ? config.branch : config.end_tag
47
63
  begin
48
64
  releases = git_client.releases(config.repo)
49
65
  .sort_by { |release| release[:created_at]}.reverse # order by create date, newest first
50
66
  release = releases.find { |release|
51
67
  unless release[:draft]
52
- # is a pre-release or published release, so check if this release is an ancestor of the current branch
53
- # "diverged" indicates it was on a different branch & "ahead" indicates it's after the
54
- # specified end_version, so neither can be used as a start_version
55
- # "behind" indicates it's an ancestor and can be used as a start_version,
56
- git_client.compare(config.repo, config.branch, release[:tag_name])[:status] == 'behind'
68
+ # is a pre-release or published release, so check if this release is an ancestor of the end_tag
69
+ # or the current branch
70
+
71
+ # "diverged" indicates it was on a different branch & "behind" indicates it's after the
72
+ # specified end_tag, so neither can be used as a start_tag
73
+ # "ahead" indicates it's an ancestor and can be used as a start_tag
74
+ git_client.compare(config.repo, release[:tag_name], tag_or_branch)[:status] == 'ahead'
57
75
  end
58
76
  }
59
- config.start_version = release[:tag_name].sub /#{config.tag_prefix}/, ''
77
+ config.start_tag = release[:tag_name].sub /#{config.tag_prefix}/, ''
78
+ rescue Octokit::Unauthorized => e
79
+ throw e
60
80
  rescue StandardError
61
- log.error "No published releases found in #{config.repo} for branch #{config.branch}. Specify a start version explicitly."
81
+ log.error "No published releases found in #{config.repo} on or before #{tag_or_branch}. Either publish a release first, or specify a start tag or commit sha explicitly."
62
82
  exit 1
63
83
  end
64
84
  end
65
85
  end
66
86
 
67
- def get_date_for_version(tags, version)
68
- # From the tags, find the tag for the specified version and get its sha
69
- tagname = "#{config.tag_prefix}#{version}"
70
- tag = tags.select {|tag| tag.name == tagname }.shift
71
- tag.nil? and log.error "No commit found with tag name #{tagname}\n" and exit 1
72
- tag_sha = tag[:commit][:sha]
87
+ def get_date_for_tag(tags, tag_str)
88
+ tagname = "#{config.tag_prefix}#{tag_str}"
89
+ unless tags.empty?
90
+ # From existing tags, find the tag for the specified tag_str and get its sha
91
+ tag = tags.select {|tag| tag.name == tagname }.shift
92
+ sha = tag[:commit][:sha] unless tag.nil?
93
+ end
94
+
95
+ unless sha
96
+ # No tags exist, or specified tag_str wasn't found. Try treating the tag_str as a commit sha
97
+ sha = tag_str
98
+ end
73
99
 
74
- # get the commit for that sha, and the date for that commit.
75
- commit = git_client.commit( config.repo, tag_sha )
100
+ begin
101
+ # get the commit for that sha, and the date for that commit.
102
+ commit = git_client.commit( config.repo, sha )
103
+ rescue Octokit::Error
104
+ log.error "No commit found with tag name #{tagname} or sha #{tag_str}\n" and exit 1
105
+ end
76
106
  commit[:commit][:author][:date]
77
107
  end
78
108
 
79
- def get_commits_for_versions
109
+ def get_commits_for_tags
80
110
 
81
111
  # The github api does not directly support getting a list of commits since a tag was applied.
82
112
  # To work around this, we instead:
83
113
 
84
- # get a list of tags
85
- tags = git_client.tags(config.repo)
86
- # get the corresponding date for the tag corresponding to the start version
87
- start_date = get_date_for_version tags, config.start_version
88
- if config.end_version.nil?
114
+ # get the corresponding date for the tag corresponding to the start tag
115
+ start_date = get_date_for_tag @all_tags, config.start_tag
116
+ if config.end_tag.nil?
89
117
  # and get a list of commits since the start_date on the configured branch
90
- commits = git_client.commits_since( config.repo, start_date, config.branch)
91
- log.info "Got #{commits.length} commits on #{config.branch} between #{config.start_version}(#{start_date}) and now"
118
+ commits = git_client.commits_since config.repo, start_date, config.branch
119
+ log.info "Got #{commits.length} commits on #{config.branch} between #{config.start_tag}(#{start_date}) and now"
92
120
  else
93
- # and for the end version if not nil
94
- end_date = get_date_for_version tags, config.end_version
121
+ # and the date for the end tag if not nil
122
+ end_date = get_date_for_tag @all_tags, config.end_tag
95
123
  # and get a list of commits between the start/end dates on the configured branch
96
- commits = git_client.commits_between( config.repo, start_date, end_date, config.branch)
97
- log.info "Got #{commits.length} commits on #{config.branch} between #{config.start_version}(#{start_date}) and #{config.end_version}(#{end_date})"
124
+ commits = git_client.commits_between config.repo, start_date, end_date, config.branch
125
+ log.info "Got #{commits.length} commits on #{config.branch} between #{config.start_tag}(#{start_date}) and #{config.end_tag}(#{end_date})"
98
126
  end
99
127
  log.debug "Commits: " + commits.map(&:sha).join(',')
100
128
  commits
@@ -128,11 +156,13 @@ module PrReleasenotes
128
156
  def get_releasenotes_for_prs(prs)
129
157
  notes = prs.reduce([]) { |notes, pr|
130
158
  # Get release notes section
131
- body = pr[:body].strip.slice(config.relnotes_regex, config.relnotes_group)
132
- unless body.nil?
159
+ unless pr[:body].nil?
133
160
  # Release notes exist for this PR, so do some cleanup
134
- body.gsub! /^<!--.+?(?=-->)-->/m, '' # strip off (multiline) comments
135
- body.gsub! /^\r?\n/, '' # and empty lines
161
+ body = pr[:body].strip.slice(config.relnotes_regex, config.relnotes_group)
162
+ unless body.nil?
163
+ body.gsub! /^<!--.+?(?=-->)-->/m, '' # strip off (multiline) comments
164
+ body.gsub! /^\r?\n/, '' # and empty lines
165
+ end
136
166
  end
137
167
  # For PRs without release notes, add just the title
138
168
  notes << {:title => pr[:title], :date => pr[:closed_at], :prnum => pr[:number], :body => body}
@@ -146,14 +176,14 @@ module PrReleasenotes
146
176
  # Regex: negative lookbehind(?<!...) for jira_prefix or beginning of link markdown,
147
177
  # followed by jira ticket pattern, followed by negative lookahead(?!...) for end of
148
178
  # link markdown
149
- # | neg lookbehind | | tkt pattern | |neg lookahead|
179
+ # | neg lookbehind | | tkt pattern | |neg lookahead |
150
180
  notes_str.gsub!(/(?<!#{config.jira_baseurl}|\[)\b([A-Z]{2,}-\d+)\b(?![^\[\]]*\]\()/, "[\\1](#{config.jira_baseurl}\\1)")
151
181
  end
152
182
  notes_str
153
183
  end
154
184
 
155
185
  def get_notes_str(notes_by_pr)
156
- notes_str = "Changes since #{config.tag_prefix}#{config.start_version}:\r\n"
186
+ notes_str = "Changes since #{config.tag_prefix}#{config.start_tag}:\r\n"
157
187
  if config.categorize
158
188
  # Categorize the notes, using the regex as the category names
159
189
  notes = notes_by_pr.reduce({}) { | notes, pr_note |
@@ -192,25 +222,38 @@ module PrReleasenotes
192
222
  else
193
223
  # No categorization required, use notes as is
194
224
  notes_str << notes_by_pr.reduce("") { | str, note |
195
- str << "#{config.relnotes_hdr_prefix}#{note[:title]} [##{note[:prnum]}](https://github.com/#{config.repo}/pull/#{note[:prnum]} \"Merged #{note[:date]}\")\r\n#{note[:body]}\r\n"
225
+ str << "#{config.relnotes_hdr_prefix}#{note[:title]} [##{note[:prnum]}](https://github.com/#{config.repo}/pull/#{note[:prnum]} \"Merged #{note[:date]}\")\r\n"
226
+ str << "#{note[:body]}\r\n" unless note[:body].nil? || note[:body].empty?
227
+ str
196
228
  }
197
229
  end
198
230
  jiraize notes_str
199
231
  end
200
232
 
201
233
  def post_to_github(notes_str)
202
- unless config.end_version.nil?
203
- tag_name = "#{config.tag_prefix}#{config.end_version}"
234
+ unless config.end_tag.nil?
235
+ tag_name = "#{config.tag_prefix}#{config.end_tag}"
236
+ if @all_tags.find { |tag| tag[:name] == tag_name }.nil?
237
+ raise "#{tag_name} is not a valid end_tag. Releases can only be created or updated for existing end_tags."
238
+ end
204
239
  begin
205
240
  release = git_client.release_for_tag(config.repo, tag_name)
206
241
  # Found existing release, so update it
207
- log.info "Found existing #{release.draft? ? 'draft ' : ''}#{release.prerelease? ? 'pre-' : ''}release with tag #{tag_name} at #{release.html_url} with body: #{release.body}"
208
- release = git_client.update_release(release.url, { :name => tag_name, :body => notes_str, :draft => false, :prerelease => true, :target_commitish => config.branch })
209
- log.info "Updated pre-release #{release.id} at #{release.html_url} with body #{notes_str}"
242
+ log.info "Found existing #{release.draft? ? 'draft ' : ''}#{release.prerelease? ? 'pre-' : ''}release with tag #{tag_name} at #{release.html_url}#{release.body.nil? || release.body.empty? ? '' : " with body: #{release.body}"}"
243
+ begin
244
+ release = git_client.update_release(release.url, { :name => tag_name, :body => notes_str, :draft => false, :prerelease => true })
245
+ log.info "Updated pre-release #{release.id} at #{release.html_url} with body\n\n #{notes_str}"
246
+ rescue Octokit::NotFound
247
+ raise "Unable to post release to github. Ensure your token has the right permissions."
248
+ end
210
249
  rescue Octokit::NotFound
211
- # no existing release, so create a new one
212
- release = git_client.create_release(config.repo, tag_name, { :name => tag_name, :body => notes_str, :draft => false, :prerelease => true, :target_commitish => config.branch })
213
- log.info "Created pre-release #{release.id} at #{release.html_url} with body #{notes_str}"
250
+ # no existing release, so try create a new one for this end_tag
251
+ begin
252
+ release = git_client.create_release(config.repo, tag_name, { :name => tag_name, :body => notes_str, :draft => false, :prerelease => true })
253
+ log.info "Created pre-release #{release.id} at #{release.html_url} with body\n\n #{notes_str}"
254
+ rescue Octokit::NotFound
255
+ raise "Unable to post release to github. Ensure your token has the right permissions."
256
+ end
214
257
  end
215
258
  end
216
259
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pr_releasenotes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - arvindth
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-28 00:00:00.000000000 Z
11
+ date: 2019-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler