From 02b08343be9a6aa88a836411805ba97c1929de6f Mon Sep 17 00:00:00 2001 From: Jackie Weng Date: Thu, 21 Nov 2024 09:00:46 +1300 Subject: [PATCH] chore: revert unnecessary quote changes --- action.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/action.yml b/action.yml index d93d5d6..fad8cda 100644 --- a/action.yml +++ b/action.yml @@ -1,46 +1,46 @@ name: Git Version -author: "Codacy" -description: "Semver versioning based on the git history and commit messages of your repository." +author: 'Codacy' +description: 'Semver versioning based on the git history and commit messages of your repository.' branding: - icon: "git-branch" - color: "gray-dark" + icon: 'git-branch' + color: 'gray-dark' inputs: tool-version: - description: "The version of the tool to be ran" + description: 'The version of the tool to be ran' required: true default: latest release-branch: - description: "The name of the release branch" + description: 'The name of the release branch' required: true default: master dev-branch: - description: "The name of the dev branch" + description: 'The name of the dev branch' required: true default: dev minor-identifier: - description: "The string or regex to identify a minor release commit" + description: 'The string or regex to identify a minor release commit' required: true - default: "feature:" + default: 'feature:' major-identifier: - description: "The string or regex to identify a major release commit" + description: 'The string or regex to identify a major release commit' required: true - default: "breaking:" + default: 'breaking:' prefix: - description: "The prefix to use in the version" + description: 'The prefix to use in the version' required: false suffix: - description: "The suffix to use in the version" + description: 'The suffix to use in the version' required: false log-paths: - description: "The paths to be used to calculate changes (comma-separated)" + description: 'The paths to be used to calculate changes (comma-separated)' required: false default: ./ outputs: version: - description: "The value of the new pre-calculated tag" + description: 'The value of the new pre-calculated tag' value: ${{ steps.version.outputs.version }} previous-version: - description: "Contains the value of previous tag, before calculating a new one" + description: 'Contains the value of previous tag, before calculating a new one' value: ${{ steps.previous-version.outputs.previous-version }} runs: using: "composite"