chore: resolve raised changes

Signed-off-by: John Redwood <john.r.k.redwood@gmail.com>
This commit is contained in:
John Redwood
2025-07-16 21:05:03 +10:00
parent b29c4a8a07
commit b90047cfec
4 changed files with 99 additions and 19 deletions
+15
View File
@@ -93,5 +93,20 @@ export interface Config {
* Default value is 24 hours.
*/
taskTimeout?: HumanDuration | string;
/**
* Sets the maximum length for task parameters recorded by the auditor.
*
* If set to -1, the limit is disabled and parameters are not truncated.
* Defaults to 256 character length.
*
* @example
* scaffolder:
* auditor:
* taskParameterMaxLength: 512
*/
auditor?: {
taskParameterMaxLength?: number;
};
};
}