From 7fc4dcea11fb2996fa9b1e8bde4a803325dcdf97 Mon Sep 17 00:00:00 2001 From: blam Date: Tue, 28 Mar 2023 13:04:56 +0200 Subject: [PATCH] chore: woops missed one Signed-off-by: blam --- docs/features/software-templates/writing-custom-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/software-templates/writing-custom-actions.md b/docs/features/software-templates/writing-custom-actions.md index 18ef703330..f04940a418 100644 --- a/docs/features/software-templates/writing-custom-actions.md +++ b/docs/features/software-templates/writing-custom-actions.md @@ -31,7 +31,7 @@ import { z } from 'zod'; export const createNewFileAction = () => { return createTemplateAction({ - id: 'file:create', + id: 'acme:file:create', schema: { input: z.object({ contents: z.string().describe('The contents of the file'),