Project Management
Work Backlog
You can find issues that are being worked at the Nerevu Group Github Projects page. If you click on the project you are working on, you will find a Kanban Board with all the issues (some of them have milestones with due dates).
Kanban Board
When you start working on a new issue, ensure you immediately do the following to keep the Kanban Board up to date:
-
Create a Pull Request (PR) and select what
Projectit belongs to. This automatically adds your PR to theIn Progresscolumn on the Kanban Board. TheAssignees,Labels, andMilestonesections are only needed for issues (the issue needsProjectas well. -
Go to the Kanban Board for the respective project and move the related issue from the
To Docolumn to theIn Progresscolumn. -
Once done fixing the issue, rebase to squash the work into one commit
git rebase -iand add the words(closes <ISSUE_NUMBER>)to the commit message. This will automatically close the corresponding issue once your PR gets merged. -
When your PR is merged into master, both the Issue and the PR in the Kanban Board will automatically move to the
Donecolumn.