From 987cd8a6f564e68ff748ca3d49cc530a44db438f Mon Sep 17 00:00:00 2001 From: benjdlambert Date: Thu, 11 Sep 2025 13:31:41 +0200 Subject: [PATCH] chore: make the catalog:get-catalog-entity action readOnly Signed-off-by: benjdlambert Signed-off-by: benjdlambert --- .../src/actions/createGetCatalogEntityAction.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/catalog-backend/src/actions/createGetCatalogEntityAction.ts b/plugins/catalog-backend/src/actions/createGetCatalogEntityAction.ts index a1c7cefe78..b9f98291fd 100644 --- a/plugins/catalog-backend/src/actions/createGetCatalogEntityAction.ts +++ b/plugins/catalog-backend/src/actions/createGetCatalogEntityAction.ts @@ -28,6 +28,11 @@ export const createGetCatalogEntityAction = ({ actionsRegistry.register({ name: 'get-catalog-entity', title: 'Get Catalog Entity', + attributes: { + destructive: false, + readOnly: true, + idempotent: true, + }, description: ` This allows you to get a single entity from the software catalog. Each entity in the software catalog has a unique name, kind, and namespace. The default namespace is "default".