From e9cbb17df35b9071d658dfb7b5f5273a06c8a44d Mon Sep 17 00:00:00 2001 From: jojomatik Date: Mon, 7 Mar 2022 19:13:33 +0100 Subject: [PATCH] fix: only require committer identity in strategy `merge` --- README.md | 4 ++-- action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 79fcaee..7a4fc15 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,10 @@ jobs: # Default: `merge` strategy: "merge" # The name to create merge commits with - # Required + # Required, if strategy `merge` is used git_committer_name: ${{ secrets.BOT_GIT_NAME }} # The email to create merge commits with - # Required + # Required, if strategy `merge` is used git_committer_email: ${{ secrets.BOT_GIT_EMAIL }} # The access token to push to the repository # Optional diff --git a/action.yml b/action.yml index 3967385..c11a2b7 100644 --- a/action.yml +++ b/action.yml @@ -16,10 +16,10 @@ inputs: default: "merge" git_committer_name: description: 'The name to create merge commits with' - required: true + required: false git_committer_email: description: 'The email to create merge commits with' - required: true + required: false github_token: description: 'The access token to push to the repository' required: false