mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
c433e5e64d
introduces the need of approval by a specific group/person for the MR to be merged based on which part of the codebase is being touched
28 lines
721 B
Plaintext
28 lines
721 B
Plaintext
# Defines people who should approve to certain parts of the codebase
|
|
|
|
/assets/ @assetsandvisualdesign @frontend
|
|
/chat-cli/ @frontend
|
|
/client/ @backend @networking
|
|
/common/ @backend @networking
|
|
/server/ @backend @networking
|
|
/server-cli/ @frontend
|
|
#/voxygen/ @someone
|
|
/voxygen/anim/ @animation
|
|
/voxygen/audio/ @audio
|
|
#/voxygen/hud/ @someone
|
|
#/voxygen/menu / @someone
|
|
#/voxygen/mesh/ @someone
|
|
/voxygen/render/ @rendering
|
|
#/voxygen/scene/ @someone
|
|
#/voxygen/ui/ @someone
|
|
/world/ @worldgen
|
|
|
|
# All files related to documentation or game unrelated content needs to be approved by the meta group
|
|
*.md @meta
|
|
*.nix @meta
|
|
.gitignore @meta
|
|
.gitattributes @meta
|
|
.gitlab-ci.yml @meta
|
|
rust-toolchain @meta
|
|
LICENSE @meta
|
|
.cargo/ @meta |