This document defines the guidelines we follow for task management using GitHub Issues. It is intentionally lean and covers primarily how individual releases are managed.
Issues typically flow through the below states during their lifecycle.
Most states are controlled via GitHub labels. By default, state transitions are managed simply by removing the current state label and applying the appropriate next state label. The exception are the Backlog and Done states. State labels do not control these states. Rather they are controlled by being Open or Closed, and whether they are assigned to a milestone. That rule applies regardless of any labels assigned it.
Any issue with a label is automatically excluded from the below states.
The following labels are not states, per se, but help to communicate information about the issue.
The only thing that you need to configure to use this process is to add the below labels to your repo.
This bash script can be used to:
- Remove the default GitHub labels automatically add when a repo is created.
- Add the above process labels.
The script requests a GitHub Personal Access Token which in order to access private repos. You will need to first create a token by following these instructions.
To run the script:
- Download (or git clone the repo).
- Set execute permissions;
chmod +x /path/set-github-labels.sh
. - Drag the file into Terminal.
- Create a Milestone
- Name in the format "v[#.##]". Ex: "v0.01"
- Select the Due Date
- Assign issues to each milestone
- Create an overall project schedule using milepost.
- When satisfied with the schedule, email to the team and the client.
Items in the integration testing state have passed all unit tests in the development environment and are considered complete pending final end of phase integration testing. Once all development work for the sprint has been completed, items will be integration tested before being moved to Done.
When a test fails, in addition to moving the item back to In Development, the tester should apply the Test Failed label and re-assign the issue to the original developer. This will aid in tracking priorities and help developers identify what needs their immediate attention.
Each release has several tasks that need to be carried out to finalize the release. These tasks are designed to facilitate testing and publication of the completed release, as well as to prepare for the next release.
The first step is to update the test and development databases with the latest data from production. Following that, we publish the completed release to the test environment and perform integration testing. Once all of the release items have passed integration testing, we deploy the release and update any pending operational items to indicate which ones can now be worked on. The following graphic shows the individual steps for this process.