Open
Description
Repro
Sample Code:
await sdk.deployActions(config, { filterEntities: { actions: ['myAction'] } })
await sdk.undeployActions(config)
For example, if you have a rule
for an action called myAction
, it will not be be deployed when setting filterEntities above. When you go to undeploy actions with the same config, it will error out since it will try to undeploy the rule
that was never deployed.
Expected
You can specify the same filterEntities that you used for deployActions, in undeployActions.
Actual
You cannot specify the same filterEntities that you used for deployActions, in undeployActions, resulting in an undeploy error.