Skip to content

Commit

Permalink
Normalize ref regex (#13112)
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryNguyen5 authored May 6, 2024
1 parent 466d161 commit 8059066
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/ten-dodos-run.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chainlink": patch
---

#internal Normalize keystone workflow ref regex property to match id regex
2 changes: 1 addition & 1 deletion core/services/workflows/models_yaml.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ type stepDefinitionYaml struct {
// - “ref” has a circular reference.
//
// NOTE: Should introduce a custom validator to cover trigger case
Ref string `json:"ref,omitempty" jsonschema:"pattern=^[a-z0-9_]+$"`
Ref string `json:"ref,omitempty" jsonschema:"pattern=^[a-z0-9_-]+$"`

// Capabilities can specify an additional optional ”inputs” property. It allows specifying a dependency on the result of one or more other capabilities. These are always runtime values that cannot be provided upfront. It takes a map of the argument name internal to the capability and an explicit reference to the values.
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
"ref": {
"type": "string",
"pattern": "^[a-z0-9_]+$"
"pattern": "^[a-z0-9_-]+$"
},
"inputs": {
"$ref": "#/$defs/mapping"
Expand Down

0 comments on commit 8059066

Please sign in to comment.