From 3e48f9c97c636a611f5c4679af02625b0c5b5ce5 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Thu, 11 Sep 2025 16:57:30 +0200 Subject: [PATCH] fix: add options in action definition --- action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/action.yml b/action.yml index c2c0cc6..ef8fc7f 100644 --- a/action.yml +++ b/action.yml @@ -15,6 +15,14 @@ inputs: 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' + reportAllErrors: + description: Whether to report all errors or only the first one + required: false + default: 'false' + verbose: + description: Whether to provide details on errors or just the number of errors + required: false + default: 'false' runs: using: 'node20'