From 71efac92adbe2b78b60e14d420cfcfdf20117a4c Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Fri, 9 Sep 2022 17:08:16 -0500 Subject: [PATCH] Add 'preview' input parameter to Action metadata --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 4e7add5..3d1b786 100644 --- a/action.yml +++ b/action.yml @@ -29,6 +29,10 @@ inputs: description: 'Name of the artifact to deploy' required: false default: "github-pages" + preview: + description: 'Is this attempting to deploy a pull request as a GitHub Pages preview site? (NOTE: This feature is only in alpha currently and is not available to the public!)' + required: false + default: 'false' outputs: page_url: description: 'URL to deployed GitHub Pages'