-
Notifications
You must be signed in to change notification settings - Fork 5
DevelopmentWorkflow
Rainer Koschke edited this page May 4, 2023
·
3 revisions
When any change is to be made (be they corrections, improvements, or enhancements), we follow the following development steps:
- An issue is created for each requested change with a meaningful title and description.
- A developer, D, is assigned to the issue either by the person who submitted the issue, by self selection, or by any other team member.
- D creates a new branch forking - in general - from the master branch. The name of the branch must reflect its purpose. The number of the issue must be appended to the name of the branch separated by a dash. For instance, if the branch was named FooBar implementing the change request #100, the name should be FooBar-100.
- D makes her/his changes. Each commit on this branch must have a meaningful description and refer to the issue number in the syntax #N, where N is the number of the issue.
- When D thinks she/he is ready, D checks whether D's changes conform to our coding-style guides and then runs all unit and play-mode tests and verifies that none of these reports any problem).
- D creates a merge request and assigns a suitable reviewer, R, to the merge request. D links the original issue to this merge request. D puts comments into the form of the merge request explaining how she/he has verified the changes (e.g., created a unit test, ran a system test).
- R reviews the changes carefully and makes suggestions in the GitHub code review wherever appropriate. R bases her/his judgment also on our review checklist. Ideally, R runs SEE, too, and checks whether the changes meet the requirements and have not broken existing features.
- D replies to the suggestions made by R in the GitHub code review and implements and commits them in her/his branch. D replies to the comments in the GitHub review and marks each of them as resolved.
- When R goes once more through all changes after the review and the replies by D. If R thinks the changes address the issue, she/he approves them at GitHub.
- Either Rainer or Marcel merge the pull request into the master. The closing comment should contain the phrase "This closes #N" where N is the number of the issue, so that the issue is automatically closed in case the pull request was connected to the issue. Automated closing works only when the issue was linked to the merge request and the comment refers to the issue with suitable keywords ("closes" is just one of them). If the issue is not closed automatically, Rainer or Marcel close the issue manually. If the issue was not completely implemented as originally described, the differences are explained in the comment.