Skip to content

Commit

Permalink
fix workflow template validation
Browse files Browse the repository at this point in the history
  • Loading branch information
jjuliano committed Sep 7, 2024
1 parent bf7a441 commit 646a755
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deps/pkl/Workflow.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ if (str.matches(versionStringRegex))
else
throw("Error: Invalid version format. Expected format: major.minor.patch or major.minor.")

name: String(isValidName)
version: String(versionRegex) = "1.0.0"
action: String(isValidAction)
name: String(isValidName) = "myAgent"
version: String(isValidVersion) = "1.0.0"
action: String(isValidAction) = "helloWorld"

settings: Project.Settings?
workflows: Listing<Uri>
Expand Down

0 comments on commit 646a755

Please sign in to comment.