Hi team
I have found this community very helpful.
I have a couple of questions about AIP logic test branches.
I am working on an AIP logic and created a branch for a use case which is almost similar to master with just one small change. I want to run this automation.
Can Functions be published for AIP Logic test branches (i.e branches which are not master)?
Can Automate be scheduled for AIP logic test branches?
You canāt publish from branches, they first need to be merged back into your main branch before being published.
Some options for you:
Use the āDuplicateā feature under the file menu to create a copy of your Logic for your new use case which you then change independently of your original Logic. This is probably the way to go if you want to have an automation that uses your new modified function, but still want to keep changing the original independently.
You could extract the common parts into a third function that accepts the unique parts as inputs, then call that from your original Logic and your new Logic.
In the āPublish settingsā menu (the icon next to the publish button) we now allow publishing to custom version tags, you could use X.0.0 for your original code and Y.0.0 for your new code.