From 48515b0fc045ce2aa3de65c27bb53557d495df09 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Thu, 11 Sep 2025 13:48:55 +0200 Subject: [PATCH] chore: complete action.yml --- action.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index d66e36c..629bf70 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,21 @@ name: 'SpyglassMC Cyntax Checker' description: 'Check your Minecraft datapack for syntax or schema errors using SpyglassMC' author: 'LordBaryhobal' + +branding: + icon: 'check-square' + color: 'green' + +inputs: + rootDir: + description: Root datapack directory (containing the data folder and pack.mcmeta file) + required: false + default: './' + version: + description: The Minecraft version to use. If not specified or set to 'auto', will try to use the version indicated in `pack.mcmeta` + required: false + default: 'auto' + runs: - using: 'node16' + using: 'node24' main: 'dist/index.js'