-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Best Practice for Rules Configurations #100
Comments
So let me start with some information and maybe at the end this is something which should be reflected in our documentation. My Rules of Thumb
When writing the Rule
Look here for some more advanced examples. ...to be continued |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
i just reopen it, to update documentation with this information |
This is more of a question for clarification as opposed to a feature request.
I am looking on guidance on best practices on setting up and implementing rules. Because my rules need to traverse the hierarchy both up and down, I would like to ensure that I implement these rules in the most efficient manner.
The question is: Should I implement a rule per work item or have a single rule with both worktime methods in them?
My Current Task rule looks like this:
I need to add another set of functionality for PBIs and Bugs such that some fields will be written to the tasks when the PBI or Bug is modified. I am looking to ensure that I do not get into a cyclical loop where the Task updates the Bug and then the bug updates the task. How to ensure calls do not get out of hand.
![image](https://user-images.githubusercontent.com/24866209/72444905-79f52900-3776-11ea-9094-57deb503ad7e.png)
So, Is it best to have the entire operation in a single rule or create a rule for each work item?
The text was updated successfully, but these errors were encountered: