simple check for devel branch

This commit is contained in:
Jeff Carr 2025-01-07 03:24:21 -06:00
parent bbd34df599
commit 016335b322
1 changed files with 7 additions and 0 deletions

View File

@ -46,3 +46,10 @@ func (repo *Repo) IsMasterBranch() bool {
} }
return false return false
} }
func (repo *Repo) IsDevelBranch() bool {
if repo.GetCurrentBranchName() == repo.GetDevelBranchName() {
return true
}
return false
}