Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/content/code-review/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,23 @@ Replace `DATASOURCE_NAME` according to the pull request content. For example:
```
~~~
{{< /tab >}}
{{< tab "New list resource" >}}
Write your release note in the following format:

~~~markdown
```release-note:new-list-resource
`LIST_RESOURCE_NAME`
```
~~~

Replace `LIST_RESOURCE_NAME` according to the pull request content. For example:

~~~markdown
```release-note:new-list-resource
`google_compute_new_list_resource`
```
~~~
{{< /tab >}}
{{< tab "Other" >}}
### Choose a release note type
For each release note block, choose an appropriate type from the following list:
Expand Down
1 change: 1 addition & 0 deletions tools/go-changelog/cmd/changelog-pr-body-check/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ following types of entries:
* enhancement
* new-resource
* new-datasource
* new-list-resource
* deprecation
* breaking-change
* feature
Expand Down
1 change: 1 addition & 0 deletions tools/go-changelog/note.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ var TypeValues = []string{
"note",
"none",
"new-resource",
"new-list-resource",
"new-datasource",
"deprecation",
"breaking-change",
Expand Down
Loading