Add default values for commit username and password
This commit is contained in:
parent
c926e0782e
commit
74024b32a9
1 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||||
|
|
Loading…
Add table
Reference in a new issue