From bd94dce721e422cd0734602e04f24bb80f413bfb Mon Sep 17 00:00:00 2001 From: mahesh-orch <81608498+mahesh-orch@users.noreply.github.com> Date: Fri, 10 Dec 2021 11:08:04 +0530 Subject: [PATCH] Add CHANGELOG for action clone feature --- CHANGELOG.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 74cc63ecdd..419a475fc7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,20 @@ in development Added ~~~~~ +* Added st2 API and CLI command for actions clone operation. + + API endpoint ``/api/v1/actions/{ref_or_id}/clone`` takes ``ref_or_id`` of source action. + Request method body takes destination pack and action name. Request method body also takes + optional paramater ``overwrite``. ``overwrite = true`` in case of destination action already exists and to be + overwritten. + + CLI command ``st2 action clone `` takes source ``ref_or_id``, destination + pack name and destination action name as mandatory arguments. + In case destionation already exists then command takes optional arugument ``-f`` or ``--force`` to overwrite + destination action. #5345 + + Contributed by @mahesh-orch. + * Added service degerestration on shutdown of a service. #5396 Contributed by @khushboobhatia01