diff --git a/README.md b/README.md index 677fe98..4f44416 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ GitHub Action for [Semantic Release](https://github.com/semantic-release/semanti * `branch`: [Optional] The branch on which releases should happen. It will override the branch attribute in your configuration file. If the attribute is not configured on both sides, the default is master. * `semantic_version`: [Optional] Specify specifying version range for semantic-release. If no version range is specified, semantic-release@^15 will be used by default. * `extra_plugins`: [Optional] Extra plugins for pre-install. You can also specify specifying version range for the extra plugins if you prefer. - * `dry_run`: [Optional] Whether to run semantic release in "dry-run" mode. It will override the dryRun attribute in your configuration file. + * `dry_run`: [Optional] Whether to run semantic release in `dry-run` mode. It will override the dryRun attribute in your configuration file. * outputs: * `new_release_published`: Whether a new release was published. `true` or `false` * `new_release_version`: Version of the new release diff --git a/action.yml b/action.yml index 6238f9c..c52afd2 100644 --- a/action.yml +++ b/action.yml @@ -12,18 +12,18 @@ inputs: extra_plugins: description: 'Extra plugins for pre-install. You can also specify specifying version range for the extra plugins if you prefer.' dry_run: - description: 'Whether to run semantic release in "dry-run" mode. It will override the dryRun attribute in your configuration file' + description: 'Whether to run semantic release in `dry-run` mode. It will override the dryRun attribute in your configuration file' outputs: new_release_published: description: 'Whether a new release was published' new_release_version: - description: "Version of the new release" + description: 'Version of the new release' new_release_major_version: - description: "Major version of the new release" + description: 'Major version of the new release' new_release_minor_version: - description: "Minor version of the new release" + description: 'Minor version of the new release' new_release_patch_version: - description: "Patch version of the new release" + description: 'Patch version of the new release' runs: using: 'node12' main: 'index.js'