/
Workflow

Workflow

Jira

Discord bot uses Jira to keep track of issues, tasks, and features. Each task that is to be worked upon by a team member is known as a ticket. Each ticket starts out in the backlog, and is moved into to-do when picked up by a team member. Once development is finished, the code is put into code review.

Git & Github

Discord bot uses the standard GitFlow system. All features or bug fixes exist as their own branch during development, and after code review, are merged into the develop branch. No commits can be pushed directly to the projects-bot branch.

When you’re working on an issue, create a branch in Git with a name following one of these formats:

  • feat/<issue-name> (for adding a new feature)

  • bugfix/<issue-name> (for fixing a bug)

When you’re done with the issue, create a pull request on GitHub to the develop branch, then assign as reviewers the team lead, and members with experience in the area.

As a side note, make sure to always pull from develop before you do any work! This is so you can get the latest code to work on, with all the new changes from other team members.


Thank you to Luke from NoTangles for providing some of this documentation.

 

Related content

UNSW CSESoc