From 55cd34f02e91c7c04ace11e9cff47b7f8229a468 Mon Sep 17 00:00:00 2001 From: Jay Zhou <4192339+jaychoww@users.noreply.github.com> Date: Wed, 31 Jul 2024 20:47:00 +0800 Subject: [PATCH] chore(doc): fix typo in `releaseNameTemplate` and `releaseBodyTemplate` defaults (#883) Co-authored-by: Jay Chow <4192339+westarest@users.noreply.github.com> Co-authored-by: Olabode Lawal-Shittabey --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c222204e..e03e0ab9 100644 --- a/README.md +++ b/README.md @@ -95,8 +95,8 @@ When using the _GITHUB_TOKEN_, the **minimum required permissions** are: | `releasedLabels` | The [labels](https://help.github.com/articles/about-labels) to add to each issue and pull request resolved by the release. Set to `false` to not add any label. See [releasedLabels](#releasedlabels). | `['released<%= nextRelease.channel ? \` on @\${nextRelease.channel}\` : "" %>']- | | `addReleases` | Will add release links to the GitHub Release. Can be `false`, `"bottom"` or `"top"`. See [addReleases](#addReleases). | `false` | | `draftRelease` | A boolean indicating if a GitHub Draft Release should be created instead of publishing an actual GitHub Release. | `false` | -| `releaseNameTemplate` | A [Lodash template](https://lodash.com/docs#template) to customize the github release's name | `<%= nextverison.name %>` | -| `releaseBodyTemplate` | A [Lodash template](https://lodash.com/docs#template) to customize the github release's body | `<%= nextverison.notes %>` | +| `releaseNameTemplate` | A [Lodash template](https://lodash.com/docs#template) to customize the github release's name | `<%= nextRelease.name %>` | +| `releaseBodyTemplate` | A [Lodash template](https://lodash.com/docs#template) to customize the github release's body | `<%= nextRelease.notes %>` | | `discussionCategoryName` | The category name in which to create a linked discussion to the release. Set to `false` to disable creating discussion for a release. | `false` | #### proxy