From 6296a68dfd7364abd48265b48d33c48801bc7842 Mon Sep 17 00:00:00 2001 From: insyri <60794909+insyri@users.noreply.github.com> Date: Fri, 22 Oct 2021 08:52:00 -0400 Subject: [PATCH] added `commit-description` as option to action.yml --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 3217353..691269a 100644 --- a/action.yml +++ b/action.yml @@ -8,6 +8,10 @@ inputs: description: Commit message, will be ignored if used with same_commit required: false default: "Prettified Code!" + commit_description: + description: Extended commit message, will be ignored if used with same_commit + required: false + default: "" same_commit: description: Update the current commit instead of creating a new one required: false @@ -58,6 +62,7 @@ runs: ${{ github.action_path }}/entrypoint.sh env: INPUT_COMMIT_MESSAGE: ${{ inputs.commit_message }} + INPUT_COMMIT_DESCRIPTION: ${{ inputs.commit_description }} INPUT_SAME_COMMIT: ${{ inputs.same_commit }} INPUT_COMMIT_OPTIONS: ${{ inputs.commit_options }} INPUT_FILE_PATTERN: ${{ inputs.file_pattern }}