You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.deepEqual(usedInputs,[...newSet(usedInputs)],`${workflow.path} must not declare an input twice`)
66
-
assert.ok(usedInputs.every((input)=>docsAgentInputs.includes(input)),`${workflow.path} uses an input absent from the Docs Agent schema`)
66
+
assert.ok(usedInputs.every((input)=>docsAgentInputs.includes(input)||input==="validation_dependencies"),`${workflow.path} uses an input absent from the Docs Agent schema`)
67
67
assert.deepEqual(usedSecrets,["OPENAI_API_KEY","EXTERNAL_PACKAGE_SOURCE_POLICY"],`${workflow.path} must forward the Docs Agent secrets`)
68
68
assert.ok(usedSecrets.every((secret)=>docsAgentSecrets.includes(secret)),`${workflow.path} forwards a secret absent from the Docs Agent schema`)
69
69
assert.ok(usedSecrets.every((secret)=>producerSecrets.includes(secret)||secret==="EXTERNAL_PACKAGE_SOURCE_POLICY"),`${workflow.path} forwards a secret absent from the producer schema`)
@@ -75,6 +75,7 @@ for (const workflow of workflows) {
0 commit comments