From 67c1a687d9ddb634342c57c6e6aeaab47cb14ea6 Mon Sep 17 00:00:00 2001 From: Daniil Suvorov Date: Tue, 28 Jun 2022 13:40:34 +0300 Subject: [PATCH] fix: github_token and github_url optional --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5de1b38..fc15686 100644 --- a/action.yml +++ b/action.yml @@ -7,11 +7,11 @@ branding: inputs: github_token: description: 'GitHub token or PAT token' - required: true + required: false default: ${{ github.token }} github_url: description: 'GitHub url or GitHub Enterprise url' - required: true + required: false default: ${{ github.server_url }} ssh: description: 'Specify if ssh should be used'