From 05732e8ca9dc4672d717839fd0c34e3ffa623288 Mon Sep 17 00:00:00 2001 From: nitrocode Date: Tue, 31 Aug 2021 15:40:47 -0400 Subject: [PATCH] Add inputs for user name and email --- action.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/action.yml b/action.yml index 9906815..78004f2 100644 --- a/action.yml +++ b/action.yml @@ -8,6 +8,15 @@ inputs: token: description: github token to clone / push with required: false + git_user_name: + description: github user name to push with + required: false + default: 'pre-commit' + git_user_email: + description: github user email to push with + required: false + default: 'pre-commit@example.com' + runs: using: 'node12' main: 'dist/index.js'