-
Notifications
You must be signed in to change notification settings - Fork 9.6k
/
CODEOWNERS
Validating CODEOWNERS rules...
35 lines (31 loc) · 1.95 KB
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Each line is a file pattern followed by one or more owners.
# More on CODEOWNERS files: https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
# Entries that are commented out have maintainers that are not in the
# HashiCorp organization and so cannot be automatically added as reviewers.
#
# We retain those as documentation of who agreed to maintain, but they
# cannot be used automatically by GitHub's pull request workflow and would
# make GitHub consider this file invalid if not commented.
# Remote-state backend # Maintainer
/internal/backend/remote-state/azure @hashicorp/terraform-azure
#/internal/backend/remote-state/consul Unmaintained
#/internal/backend/remote-state/cos @likexian
/internal/backend/remote-state/gcs @hashicorp/tf-eco-hybrid-cloud
/internal/backend/remote-state/http @hashicorp/terraform-core
#/internal/backend/remote-state/oss @xiaozhu36
#/internal/backend/remote-state/pg @remilapeyre
/internal/backend/remote-state/s3 @hashicorp/terraform-aws
/internal/backend/remote-state/kubernetes @hashicorp/tf-eco-hybrid-cloud
# Provisioners
builtin/provisioners/file @hashicorp/terraform-core
builtin/provisioners/local-exec @hashicorp/terraform-core
builtin/provisioners/remote-exec @hashicorp/terraform-core
# go.sum files should never cause automatic review requests because they only
# ever change in response to go.mod files (our PR checks would fail if not) and
# if a specific module has _only_ a go.sum update without an associated go.mod
# update then that represents that the update cannot affect the module, and
# the Go toolchain just needed to download something new to prove that.
#
# (The last match in the file "wins", so this overrides any explicit owner
# specified above when go.sum is the only file that changed.)
*/go.sum # no owner for these