Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Note - branch/version is a bit blurry, but we can think of version as another 'main' branch that is being actively worked on. ex: epics 3 vs 7, both 3 and 7 are actively getting fixes.

Create Issue:

Code Block
{
	"caterNumber": "string"
	"component": "string"
	"issueTracker": "string", // OPTIONAL
	"linux_username": "string",
	"gitub_username": "string
}

Add new version for active development on component:

Code Block
{
	"component": "string"
	"version": "string"
}

Create new branch

Code Block
{
	"component": "string"
	"version": "string"
	"type": "string"		// ex: [fix, dev] where fix is meant to merge to main, and dev is not
	"branchPoint": "string" // where to start the branch from: [branch, tag, commit]
}

...