From 22fa81e96cf3b21637b8fefa7001cb6496abbe41 Mon Sep 17 00:00:00 2001 From: Jacob Wallraff Date: Wed, 15 Feb 2023 17:27:21 -0800 Subject: [PATCH] Some fix --- .../src/description-providers/reusable-workflow-input.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/actions-languageserver/src/description-providers/reusable-workflow-input.ts b/actions-languageserver/src/description-providers/reusable-workflow-input.ts index 71eefef..1e4c805 100644 --- a/actions-languageserver/src/description-providers/reusable-workflow-input.ts +++ b/actions-languageserver/src/description-providers/reusable-workflow-input.ts @@ -22,10 +22,7 @@ export async function getReusableWorkflowInputDescription( if (templateReusableJob && reusableWorkflowJob["input-definitions"] && templateReusableJob["input-definitions"]) { // For each input in the reusable job, see if there's one that matches in the template for (const input of reusableWorkflowJob["input-definitions"]) { - const templateInput = templateReusableJob["input-definitions"].find(templateInput => templateInput.key.value === input.key.value); - if (templateInput) { - return "fuck me" - } + return "asd" } }