From 5e6fc6455490a589ba77bb21050ecaca23704687 Mon Sep 17 00:00:00 2001 From: softprops Date: Sun, 25 Jul 2021 20:20:53 -0400 Subject: [PATCH] fix yaml table fmt --- README.md | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 9df5922..32188e3 100644 --- a/README.md +++ b/README.md @@ -162,20 +162,18 @@ jobs: The following are optional as `step.with` keys -| Name | Type | Description | - -|---------------------------|---------|-----------------------------------------------------------------------------------------------------| - -| `body` | String | Text communicating notable changes in this release | -| `body_path` | String | Path to load text communicating notable changes in this release | -| `draft` | Boolean | Indicator of whether or not this release is a draft | -| `prerelease` | Boolean | Indicator of whether or not is a prerelease | -| `files` | String | Newline-delimited globs of paths to assets to upload for release | -| `name` | String | Name of the release. defaults to tag name | -| `tag_name` | String | Name of a tag. defaults to `github.ref` | -| `fail_on_unmatched_files` | Boolean | Indicator of whether to fail if any of the `files` globs match nothing | -| `target_commitish` | String | Commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. | -| `token` | String | Secret GitHub Personal Access Token. Defaults to `${{ github.token }}` | +| Name | Type | Description | +| ------------------------- | ------- | --------------------------------------------------------------------------------------------------- | +| `body` | String | Text communicating notable changes in this release | +| `body_path` | String | Path to load text communicating notable changes in this release | +| `draft` | Boolean | Indicator of whether or not this release is a draft | +| `prerelease` | Boolean | Indicator of whether or not is a prerelease | +| `files` | String | Newline-delimited globs of paths to assets to upload for release | +| `name` | String | Name of the release. defaults to tag name | +| `tag_name` | String | Name of a tag. defaults to `github.ref` | +| `fail_on_unmatched_files` | Boolean | Indicator of whether to fail if any of the `files` globs match nothing | +| `target_commitish` | String | Commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. | +| `token` | String | Secret GitHub Personal Access Token. Defaults to `${{ github.token }}` | 💡 When providing a `body` and `body_path` at the same time, `body_path` will be attempted first, then falling back on `body` if the path can not be read from.