Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Git itself
.gitattributes eol=lf
.gitignore eol=lf
OWNERS eol=lf
.github/CODEOWNERS eol=lf

# dnscontrol files are unix line-endings:
*.md text eol=lf
Expand Down
2 changes: 2 additions & 0 deletions OWNERS → .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,5 @@ providers/sakuracloud @ttkzw
providers/transip @blackshadev
providers/vercel @SukkaW
providers/vultr @pgaskin

* @tlimoncelli
6 changes: 5 additions & 1 deletion build/generate/ownersFile.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ func generateOwnersFile() error {
ownersData.WriteString("\n")
}

file, err := os.Create("OWNERS")
// Overall maintainer
ownersData.WriteString("\n")
ownersData.WriteString("* @tlimoncelli\n")

file, err := os.Create(".github/CODEOWNERS")
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion documentation/advanced-features/writing-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ These are the things we'll be checking when you submit the PR. Please try to co

1. Run `go generate ./...` to make sure all generated files are fresh.
2. Make sure the following files were created and/or updated:
* `OWNERS`
* `CODEOWNERS`
* `README.md`
* `.github/workflows/pr_integration_tests.yml` (The PROVIDERS list)
* `.goreleaser.yml` (Search for `Provider-specific changes`)
Expand Down
Loading