acl: protect master and main by default

Signed-off-by: dzdidi <deniszalessky@gmail.com>
This commit is contained in:
dzdidi
2024-02-09 09:46:09 +00:00
parent 84cdcd29ae
commit 6b9cbce53f

View File

@@ -14,7 +14,7 @@ const ROLES = {
} }
const DEFAULT_ACL = { const DEFAULT_ACL = {
visibility: 'public', // public|private visibility: 'public', // public|private
protectedBranches: ['master'], protectedBranches: ['master', 'main'],
ACL: {} ACL: {}
} }