github.com/arsham/gitrelease@v0.3.2-0.20221207124258-6867180b2c2d/commit/commit_internal_test.go (about)

     1  package commit
     2  
     3  // NewGroup returns a new instance of the Group.
     4  func NewGroup(sec, subject, desc string, breaking bool) Group {
     5  	return Group{
     6  		Verb:        sec,
     7  		Subject:     subject,
     8  		Description: desc,
     9  		Breaking:    breaking,
    10  	}
    11  }