Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 430 Bytes

File metadata and controls

9 lines (7 loc) · 430 Bytes

Meziantou.Framework.CodeOwners

Meziantou.Framework.CodeOwners parses CODEOWNERS file. These files are common on GitHub and GitLab.

CodeOwnersEntry[] entries = CodeOwnersParser.Parse("* @user1 @user2").ToArray();
// [0]: CodeOwnersEntry.FromUsername("*", "user1")
// [1]: CodeOwnersEntry.FromUsername("*", "user2")