From 7a173c38273575ee6fd6bb6cd642849a85e860cd Mon Sep 17 00:00:00 2001 From: Moritz Wiesinger Date: Thu, 8 Dec 2022 17:43:33 +0100 Subject: [PATCH] docs: Fix typo in action outputs (#626) ### This PR - fixes a typo in the action outputs in README.md - the code [here](https://github.com/google-github-actions/release-please-action/blob/main/index.js#L214) shows that the output variable is actually called `releases_created` instead of `release_created` Signed-off-by: Moritz Wiesinger Co-authored-by: Jeff Ching --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37203cd0..5149f87a 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ Release Please automates releases for the following flavors of repositories: | output | description | |:---:|---| -| `release_created` | `true` if the release was created, `false` otherwise | +| `releases_created` | `true` if the release was created, `false` otherwise | | `upload_url` | Directly related to [**Create a release**](https://developer.github.com/v3/repos/releases/#response-4) API | | `html_url` | Directly related to [**Create a release**](https://developer.github.com/v3/repos/releases/#response-4) API | | `tag_name` | Directly related to [**Create a release**](https://developer.github.com/v3/repos/releases/#response-4) API |