Skip to content

Commit bd50a3f

Browse files
committed
mv OWNERS .github/CODEOWNERS to fix 3978
1 parent 819253a commit bd50a3f

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Git itself
44
.gitattributes eol=lf
55
.gitignore eol=lf
6-
OWNERS eol=lf
6+
.github/CODEOWNERS eol=lf
77

88
# dnscontrol files are unix line-endings:
99
*.md text eol=lf
File renamed without changes.

build/generate/ownersFile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func generateOwnersFile() error {
2525
ownersData.WriteString("\n")
2626
}
2727

28-
file, err := os.Create("OWNERS")
28+
file, err := os.Create(".github/CODEOWNERS")
2929
if err != nil {
3030
return err
3131
}

documentation/advanced-features/writing-providers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ These are the things we'll be checking when you submit the PR. Please try to co
354354
355355
1. Run `go generate ./...` to make sure all generated files are fresh.
356356
2. Make sure the following files were created and/or updated:
357-
* `OWNERS`
357+
* `CODEOWNERS`
358358
* `README.md`
359359
* `.github/workflows/pr_integration_tests.yml` (The PROVIDERS list)
360360
* `.goreleaser.yml` (Search for `Provider-specific changes`)

0 commit comments

Comments
 (0)