-
Notifications
You must be signed in to change notification settings - Fork 505
/
generate.go
277 lines (241 loc) · 7.67 KB
/
generate.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
Copyright 2023 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"fmt"
"strings"
"github.com/spf13/cobra"
"sigs.k8s.io/release-sdk/git"
"sigs.k8s.io/release-utils/env"
"k8s.io/release/pkg/notes"
"k8s.io/release/pkg/notes/options"
"k8s.io/release/pkg/release"
)
func addGenerateFlags(subcommand *cobra.Command) {
// githubBaseURL contains the github base URL.
subcommand.PersistentFlags().StringVar(
&opts.GithubBaseURL,
"github-base-url",
env.Default("GITHUB_BASE_URL", ""),
"Base URL of github",
)
// githubUploadURL contains the github upload URL.
subcommand.PersistentFlags().StringVar(
&opts.GithubUploadURL,
"github-upload-url",
env.Default("GITHUB_UPLOAD_URL", ""),
"Upload URL of github",
)
// githubOrg contains name of github organization that holds the repo to scrape.
subcommand.PersistentFlags().StringVar(
&opts.GithubOrg,
"org",
env.Default("ORG", notes.DefaultOrg),
"Name of github organization",
)
// githubRepo contains name of github repository to scrape.
subcommand.PersistentFlags().StringVar(
&opts.GithubRepo,
"repo",
env.Default("REPO", notes.DefaultRepo),
"Name of github repository",
)
// output contains the path on the filesystem to where the resultant
// release notes should be printed.
subcommand.PersistentFlags().StringVar(
&releaseNotesOpts.outputFile,
"output",
env.Default("OUTPUT", ""),
"The path to the where the release notes will be printed",
)
// branch is which branch to scrape.
subcommand.PersistentFlags().StringVar(
&opts.Branch,
"branch",
env.Default("BRANCH", git.DefaultBranch),
fmt.Sprintf("Select which branch to scrape. Defaults to `%s`", git.DefaultBranch),
)
// startSHA contains the commit SHA where the release note generation
// begins.
subcommand.PersistentFlags().StringVar(
&opts.StartSHA,
"start-sha",
env.Default("START_SHA", ""),
"The commit hash to start at",
)
// endSHA contains the commit SHA where the release note generation ends.
subcommand.PersistentFlags().StringVar(
&opts.EndSHA,
"end-sha",
env.Default("END_SHA", ""),
"The commit hash to end at",
)
// startRev contains any valid git object where the release note generation
// begins. Can be used as alternative to start-sha.
subcommand.PersistentFlags().StringVar(
&opts.StartRev,
"start-rev",
env.Default("START_REV", ""),
"The git revision to start at. Can be used as alternative to start-sha.",
)
// endRev contains any valid git object where the release note generation
// ends. Can be used as alternative to start-sha.
subcommand.PersistentFlags().StringVar(
&opts.EndRev,
"end-rev",
env.Default("END_REV", ""),
"The git revision to end at. Can be used as alternative to end-sha.",
)
// SkipFirstCommit skips the first commit if StartRev is being used. This
// is useful if StartRev is a tag which should not be included in the
// release notes.
subcommand.PersistentFlags().BoolVarP(
&opts.SkipFirstCommit,
"skip-first-commit",
"s",
env.IsSet("SKIP_FIRST_COMMIT"),
"Skip the first commit if --start-rev is being used. This is useful if the --start-rev is a tag which should not be included in the release notes.",
)
// repoPath contains the path to a local Kubernetes repository to avoid the
// delay during git clone
subcommand.PersistentFlags().StringVar(
&opts.RepoPath,
"repo-path",
env.Default("REPO_PATH", ""),
"Path to a local Kubernetes repository, used only for tag discovery.",
)
// format is the output format to produce the notes in.
subcommand.PersistentFlags().StringVar(
&opts.Format,
"format",
env.Default("FORMAT", options.FormatMarkdown),
fmt.Sprintf("The format for notes output (options: %s)",
options.FormatJSON+", "+options.FormatMarkdown,
),
)
// go-template is the go template to be used when the format is markdown
subcommand.PersistentFlags().StringVar(
&opts.GoTemplate,
"go-template",
env.Default("GO_TEMPLATE", options.GoTemplateDefault),
fmt.Sprintf("The go template to be used if --format=markdown (options: %s)",
strings.Join([]string{
options.GoTemplateDefault,
options.GoTemplateInline + "<template>",
options.GoTemplatePrefix + "<file.template>",
}, ", "),
),
)
subcommand.PersistentFlags().BoolVar(
&opts.AddMarkdownLinks,
"markdown-links",
env.IsSet("MARKDOWN_LINKS"),
"Add links for PRs and authors are added in the markdown format",
)
subcommand.PersistentFlags().StringVar(
&opts.RequiredAuthor,
"required-author",
env.Default("REQUIRED_AUTHOR", "k8s-ci-robot"),
"Only commits from this GitHub user are considered. Set to empty string to include all users",
)
subcommand.PersistentFlags().BoolVar(
&opts.Debug,
"debug",
env.IsSet("DEBUG"),
"Enable debug logging",
)
subcommand.PersistentFlags().StringVar(
&opts.DiscoverMode,
"discover",
env.Default("DISCOVER", options.RevisionDiscoveryModeNONE),
fmt.Sprintf("The revision discovery mode for automatic revision retrieval (options: %s)",
strings.Join([]string{
options.RevisionDiscoveryModeNONE,
options.RevisionDiscoveryModeMergeBaseToLatest,
options.RevisionDiscoveryModePatchToPatch,
options.RevisionDiscoveryModeMinorToMinor,
}, ", "),
),
)
subcommand.PersistentFlags().StringVar(
&opts.ReleaseBucket,
"release-bucket",
env.Default("RELEASE_BUCKET", release.ProductionBucket),
"Specify gs bucket to point to in generated notes",
)
subcommand.PersistentFlags().StringVar(
&opts.ReleaseTars,
"release-tars",
env.Default("RELEASE_TARS", ""),
"Directory of tars to sha512 sum for display",
)
subcommand.PersistentFlags().BoolVar(
&releaseNotesOpts.tableOfContents,
"toc",
env.IsSet("TOC"),
"Enable the rendering of the table of contents",
)
subcommand.PersistentFlags().StringVar(
&opts.RecordDir,
"record",
env.Default("RECORD", ""),
"Record the API into a directory",
)
subcommand.PersistentFlags().StringVar(
&opts.ReplayDir,
"replay",
env.Default("REPLAY", ""),
"Replay a previously recorded API from a directory",
)
subcommand.PersistentFlags().BoolVar(
&releaseNotesOpts.dependencies,
"dependencies",
true,
"Add dependency report",
)
subcommand.PersistentFlags().StringSliceVarP(
&opts.MapProviderStrings,
"maps-from",
"m",
[]string{},
"specify a location to recursively look for release notes *.y[a]ml file mappings",
)
subcommand.PersistentFlags().BoolVar(
&opts.ListReleaseNotesV2,
"list-v2",
false,
"enable experimental implementation to list commits (ListReleaseNotesV2)",
)
}
// addGenerate adds the generate subcomand to the main release notes cobra cmd.
func addGenerate(parent *cobra.Command) {
// Create the cobra command
generateCmd := &cobra.Command{
Short: "Generate release notes from GitHub pull request data (default)",
Use: "generate",
SilenceUsage: true,
SilenceErrors: true,
RunE: func(cmd *cobra.Command, args []string) error {
releaseNotes, err := notes.GatherReleaseNotes(opts)
if err != nil {
return fmt.Errorf("gathering release notes: %w", err)
}
return WriteReleaseNotes(releaseNotes)
},
PreRunE: func(*cobra.Command, []string) error {
return opts.ValidateAndFinish()
},
}
addGenerateFlags(generateCmd)
parent.AddCommand(generateCmd)
}