Last active
February 22, 2024 00:27
-
-
Save semperos/aa76240a3be76501383d8e8194b0c317 to your computer and use it in GitHub Desktop.
Bug Bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bug Bash | |
Engineer | |
Ready for Next Bug | |
claim bug story -> Working Solo on Bug | |
claim bug story with pairing partner -> Pairing on Bug | |
Working Solo on Bug | |
put up PR -> Blocked on PR Review | |
Pairing on Bug | |
put up PR -> Review Pair PR | |
split up to work on something else -> Ready for Next Bug | |
Review Pair PR | |
approve PR -> Ready for Next Bug | |
request changes on PR -> Pairing on Bug | |
Blocked on PR Review | |
review a PR -> Reviewing PR while Waiting for PR Review | |
pair with someone -> Pairing on Bug | |
--event-- receive PR approval -> Bug Fix is Ready for QA | |
--event-- receive PR change request -> Working Solo on Bug | |
Reviewing PR while Waiting for PR Review | |
approve PR -> Blocked on PR Review | |
request changes on PR -> Blocked on PR Review | |
Bug Fix is Ready for QA | |
move bug to Ready for Acceptance workflow state -> Ready for Next Bug | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment