GitHub/GitLab Integration: Selectable default template by project
When a Collaborator review is created from a pull/merge request through the GitHub/GitLab remote integration, it would be nice if a template could be configured to be automatically selected based on the project the pull/merge request came from. Different projects may have different workflows, so setting a default template for the Collaborator review based on the project would set the proper workflow. Currently the default template is the last one the user creating the review (which is matched from the user creating the pull/merge request) used.938Views0likes0Commentsregular expression in name mapping template
Hi, I need help to create templates using regular expressions as a match in the active property; in particular I need: 1) template A, active property WpfControlAutomationId, value= "match every object with AutomationId non null or empty or whitespace" (C# would be !string.IsNullOrWhiteSpace(value)) 2) templates B/C/D/..., active property ClrFullClassName, value= "Control specific type" (Button/TextBox/...) active property WpfControlAutomationId,value= "AutomationId is null or empty or whitespace" This way it should match every object with AutomationId with the first template, every other with the type specific template. For the first match I tryed different regex: .+/ (.)+/ ^(?!\s*$).+ For the second: ^$ It seems that it doesn't work anyway, in particular I get a match with the first template for every object or for none of them. Thank you!1.3KViews2likes1Comment