From 74024b32a9b58a5ecab24ddafb83ee97b375d020 Mon Sep 17 00:00:00 2001 From: Waleed Malik Date: Mon, 30 Nov 2020 15:06:56 +0500 Subject: [PATCH] Add default values for commit username and password --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index e637dcc..002ea9e 100644 --- a/action.yml +++ b/action.yml @@ -35,11 +35,11 @@ inputs: commit_username: description: "The user name used for the commit user" required: false - default: "$GITHUB_ACTOR" + default: ${{ github.actor }} commit_email: description: "The email used for the commit user" required: false - default: "$GITHUB_ACTOR@users.noreply.github.com" + default: ${{ github.actor }}@users.noreply.github.com runs: using: 'docker' image: 'Dockerfile'