Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Commit

Permalink
Don't require inputs for which we supply defaults
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel F. Dickinson <[email protected]>
  • Loading branch information
danielfdickinson committed Sep 11, 2023
1 parent ad5b36a commit 372b76d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Statut IC: [![pre-commit.ci statut](https://results.pre-commit.ci/badge/github/w

| Input | Required | Default | Dit-on |
|-------|-------|---------|---------|
| download-site-as | oui | unminified-site | GitHub Artifact qui contenu le tarball avec le site |
| download-site-filename | oui | hugo-site.tar | Nom de tarball qui contenu le site |
| output-directory | oui | public | subdirectory (en tarball) contenu le site a vérifier |
| download-site-as | non | unminified-site | GitHub Artifact qui contenu le tarball avec le site |
| download-site-filename | non | hugo-site.tar | Nom de tarball qui contenu le site |
| output-directory | no | public | subdirectory (en tarball) contenu le site a vérifier |
| repo-token | oui | _(none)_ | GITHUB_TOKEN |
| use-existing-workspace | non | false | Utiliser un workspace existent et le site créer vers un artefact |

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ CI Status: [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/w

| Input | Required | Default | Meaning |
|-------|-------|---------|---------|
| download-site-as | yes | unminified-site | GitHub Artifact containing a tarball with the site |
| download-site-filename | yes | hugo-site.tar | Name of tarball containing the site |
| output-directory | yes | public | subdirectory (in tarball) containing the site to validate |
| download-site-as | no | unminified-site | GitHub Artifact containing a tarball with the site |
| download-site-filename | no | hugo-site.tar | Name of tarball containing the site |
| output-directory | no | public | subdirectory (in tarball) containing the site to validate |
| repo-token | yes | _(none)_ | GITHUB_TOKEN |
| use-existing-workspace | no | false | Use an existing checkout and built site instead of artifact |

Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ branding:
inputs:
download-site-as:
description: Artifact containing the Hugo site
required: true
required: false
default: unminified-site
download-site-filename:
description: Filename for tarball of site to download from artifact
required: true
required: false
default: hugo-site.tar
output-directory:
description: Location of output site
required: true
required: false
default: public
repo-token:
description: GITHUB_TOKEN
Expand Down

0 comments on commit 372b76d

Please sign in to comment.