I have a custom workflow created on our self-hosted Azure DevOps server. Currently, it's based on the XML that defines the Basic workflow apart from a new name and description.
I'm trying to add a field to the epic work-item type called "Contact Person." Using System.AssignedTo as a template, I've added this new field to"
- WIT/FIELDS (as FIELD)
- WIT/FORM/Group/Column/TabGroup/Tab("Features")/LinkColumns (As LinkColumn)
- WIT/FORM/Group/Column/TabGroup/Tab("All Links")/LinkColumns (As LinkColumn)
- WIT/FORM/Group("Planning")/Column (As Control)
I didn't add the custom field to SystemControls because that was causing a parse error. I did try the four above in various combinations. None caused errors, but none caused the field to appear when I create a new epic.
I've been up and down the documentation without answers. How do I edit the workflow to add this field? And is there anything like a linter that will tell me if my XML isn't going to do work the way it's supposed to?