From 3bce9199d10aa0f4b5b6b94829e826243951ac2f Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Mon, 13 Jun 2022 12:41:50 -0500 Subject: [PATCH] Add action metadata --- action.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..b0d0c3c --- /dev/null +++ b/action.yml @@ -0,0 +1,22 @@ +name: "Setup Nextflow" +description: "Install Nextflow and add it to the PATH" +author: "Thomas A. Christensen II" +inputs: + version: + description: "The Nextflow version to download (if necessary) and use. Example: 21.10.3" + required: false + default: "latest-stable" + all: + description: "Whether to install every Nextflow release via the '-all' distribution." + required: false + default: false + token: + description: "GitHub token to access the GitHub Releases API. The default token should be sufficient for all use cases." + required: false + default: ${{ github.token }} +runs: + using: "node16" + main: "index.js" +branding: + icon: "shuffle" + color: "green"