Update the version table

This commit is contained in:
Michelle McDaniel 2021-03-01 13:05:56 -08:00
parent e60ecf3f4f
commit 84730a2aa8
4 changed files with 306 additions and 218 deletions

View file

@ -6,11 +6,13 @@ open System
type Branch =
{ GitBranchName: string
DisplayName: string
AkaMsChannel: string option }
AkaMsChannel: string option
UseLegacyAkaMS: bool }
type ReferenceTemplate =
{ AkaMSTemplate: string
LegacyTemplate: string }
LegacyTemplate: string
AkaMSLegacyTemplate: string}
let branchNameShorten (branch: Branch): string =
branch.GitBranchName.Substring(branch.GitBranchName.IndexOf('/') + 1).Replace("xx", "XX")