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" } }