Add default values for commit username and password

This commit is contained in:
Waleed Malik 2020-11-30 15:06:56 +05:00
parent c926e0782e
commit 74024b32a9

View file

@ -35,11 +35,11 @@ inputs:
commit_username: commit_username:
description: "The user name used for the commit user" description: "The user name used for the commit user"
required: false required: false
default: "$GITHUB_ACTOR" default: ${{ github.actor }}
commit_email: commit_email:
description: "The email used for the commit user" description: "The email used for the commit user"
required: false required: false
default: "$GITHUB_ACTOR@users.noreply.github.com" default: ${{ github.actor }}@users.noreply.github.com
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'