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 +4 -4
- data/README.md +29 -10
- data/examples/custom_config.yaml +2 -1
- data/examples/default_config.yaml +11 -8
- data/exe/pr_releasenotes +1 -3
- data/lib/pr_releasenotes/configuration.rb +25 -17
- data/lib/pr_releasenotes/version.rb +1 -1
- data/lib/pr_releasenotes.rb +96 -53
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78e490c7b05492ae9c389da01992071a95f386cd79e58775ca150207ed343217
|
4
|
+
data.tar.gz: 4d076be623487de18e41bd0d65267333c2925d18f5f70d4b256f14c14ab6bb8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
-
|
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
|
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 <
|
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
|
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 <
|
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
|
-
|
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.
|
data/examples/custom_config.yaml
CHANGED
@@ -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
|
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
|
-
#
|
12
|
+
# Tag range from which release notes should be gathered
|
12
13
|
|
13
|
-
# Extract pull requests starting from this
|
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
|
-
#
|
18
|
+
# start_tag:
|
18
19
|
|
19
20
|
# Defaults to nil for latest commit. nil will also skip the creation of a github release
|
20
|
-
#
|
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
|
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
|
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
@@ -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, :
|
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
|
-
#
|
43
|
-
@
|
44
|
-
@
|
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
|
-
#
|
54
|
-
@relnotes_regex =
|
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
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
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 <
|
111
|
-
@
|
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 <
|
114
|
-
@
|
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
|
data/lib/pr_releasenotes.rb
CHANGED
@@ -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
|
29
|
-
|
30
|
-
log.info "Retrieving release notes between #{config.
|
31
|
-
#
|
32
|
-
|
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(
|
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
|
-
|
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
|
45
|
-
|
46
|
-
|
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
|
53
|
-
#
|
54
|
-
|
55
|
-
# "
|
56
|
-
|
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.
|
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}
|
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
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
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
|
-
|
75
|
-
|
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
|
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
|
85
|
-
|
86
|
-
|
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
|
91
|
-
log.info "Got #{commits.length} commits on #{config.branch} between #{config.
|
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
|
94
|
-
end_date =
|
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
|
97
|
-
log.info "Got #{commits.length} commits on #{config.branch} between #{config.
|
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
|
-
|
132
|
-
unless body.nil?
|
159
|
+
unless pr[:body].nil?
|
133
160
|
# Release notes exist for this PR, so do some cleanup
|
134
|
-
body.
|
135
|
-
body.
|
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
|
-
# |
|
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.
|
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
|
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.
|
203
|
-
tag_name = "#{config.tag_prefix}#{config.
|
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
|
-
|
209
|
-
|
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
|
-
|
213
|
-
|
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.
|
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-
|
11
|
+
date: 2019-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|