From 9d516e8fa25d6052571781f4733db13af413729b Mon Sep 17 00:00:00 2001 From: ChristopherHX Date: Wed, 29 Jan 2025 17:20:06 +0100 Subject: [PATCH] fix: use non strict schema to allow some undefined behavior (#30) * GitHub Actions doesn't use the newer strict schema in the service * Tolerate more hallucinations --------- Co-authored-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- pkg/model/workflow.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/model/workflow.go b/pkg/model/workflow.go index d8e08a29..9eeadb03 100644 --- a/pkg/model/workflow.go +++ b/pkg/model/workflow.go @@ -1,6 +1,7 @@ package model import ( + "errors" "fmt" "io" "reflect" @@ -70,10 +71,10 @@ func (w *Workflow) OnEvent(event string) interface{} { func (w *Workflow) UnmarshalYAML(node *yaml.Node) error { // Validate the schema before deserializing it into our model if err := (&schema.Node{ - Definition: "workflow-root-strict", + Definition: "workflow-root", Schema: schema.GetWorkflowSchema(), }).UnmarshalYAML(node); err != nil { - return err + return errors.Join(err, fmt.Errorf("Actions YAML Schema Validation Error detected:\nFor more information, see: https://nektosact.com/usage/schema.html")) } type WorkflowDefault Workflow return node.Decode((*WorkflowDefault)(w))