From 12214a7acef2c01d2820827363b423e23b6b3cdf Mon Sep 17 00:00:00 2001 From: Andrew Nagy <564256+tm1000@users.noreply.github.com> Date: Wed, 16 Nov 2022 15:43:47 -0800 Subject: [PATCH] Use default token if no value supplied Fill the token input with default if no value supplied --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 746c07e..08ae527 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,8 @@ inputs: required: true token: description: 'Github repository token' - required: true + default: ${{ github.token }} + required: false log-url: description: 'Sets the URL for deployment output' required: false