From 90c9eff47e26e66800ce31debcf2fc45d8ba4a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Ch=C3=A1nh=20=C4=90=E1=BA=A1i?= Date: Tue, 20 Feb 2024 21:04:05 +0700 Subject: [PATCH] docs(README.md): update optional configuration for devcard orientation to use "default" and "wide" values instead of "Vertical" and "Horizontal" fix(action.yml): update input description for type to reflect the new "default" and "wide" values for devcard orientation configuration. --- README.md | 4 ++-- action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 89549dd..b20edfb 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ jobs: ### Optional - `type`: Configure orientation for devcard - - `Vertical` (Default) - - `Horizontal` + - `default`: Vertical (Default) + - `wide`: Horizontal - `token`: GitHub Token used to commit the devcard - `commit_branch`: The branch to commit the devcard to. Defaults to the branch of the action. - `commit_message`: The commit message to use when committing the devcard. Defaults to `Update ${filename}`. diff --git a/action.yml b/action.yml index c27b911..38ed43a 100644 --- a/action.yml +++ b/action.yml @@ -10,8 +10,8 @@ inputs: required: true type: - description: 'Configure orientation for devcard. Must be either "Vertical" or "Horizontal"' - default: Vertical + description: 'Configure orientation for devcard. Must be either "default" or "wide"' + default: default required: false token: