From 9f3e06f14b964b9740945363ff5c88ef23aab00e Mon Sep 17 00:00:00 2001 From: Varun Date: Mon, 26 Oct 2020 08:21:59 +0530 Subject: [PATCH] Added Default Values. --- action.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/action.yml b/action.yml index d4c434a..b7ab2b0 100644 --- a/action.yml +++ b/action.yml @@ -11,39 +11,56 @@ branding: inputs: gh_username: description: 'Github Username' + default: false + required: true gh_accesstoken: description: 'Github Personal Access Token' + default: false + required: true gitea_host: description: 'Gitea Mirror Host URL' + default: false + required: true gitea_username: description: 'Gitea Username' + default: false + required: true gitea_accesstoken: description: 'Gitea Personal Access Token' + default: false + required: true gitea_gist_prefix: description: 'Custom Prefix For Repository When Mirroring Gists' + default: 'gist' gitea_gist_surfix: description: 'Custom Prefix For Repository When Mirroring Gists' + default: '' gistsSource: description: 'set to true to mirror all Gists Created By You' + default: false gistsStared: description: 'set to true to mirror all Gists Stared By You' + default: false repositoryStared: description: 'set to true to mirror all Repository Stared By You' + default: false repositorySource: description: 'set to true to mirror all Repository Created By You' + default: false repositoryForked: description: 'set to true to mirror all Repository Forked By You' + default: false localCache: description: 'set to true to store all repos created in gitea'