Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add default CODEOWNERS file #199

Merged
merged 4 commits into from
Apr 29, 2024
Merged
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
23 changes: 23 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# For more information, see the following link:
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

# Global, default code owners for the entire repository.
# Responsible for reviewing any code changes that do not have a more specific owner.
* @cycle/core-contributors

# @cycle/infrastructure is responsible to review "support/health/infra files".
.github/ @cycle/infrastructure
.* @cycle/infrastructure
.*.yml @cycle/infrastructure
.*.yaml @cycle/infrastructure
*.md @cycle/infrastructure

# @cycle/contributors and @cycle/core-contributors are responsible to review "core" files.
resources/ @cycle/core-contributors @cycle/contributors
src/ @cycle/core-contributors @cycle/contributors
tests/ @cycle/core-contributors @cycle/contributors

# all teams are responsible to review dependency and test configuration files.
composer.* @cycle/core-contributors @cycle/contributors @cycle/infrastructure
infection.* @cycle/core-contributors @cycle/contributors @cycle/infrastructure
*.xml @cycle/core-contributors @cycle/contributors @cycle/infrastructure
4 changes: 0 additions & 4 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,4 @@ contact_links:
url: https://discord.gg/spiralphp
about: Join our Discord community to get help, share your ideas, and chat with other developers.

- name: Send an e-mail to the developer
url: mailto:[email protected]
about: Please do NOT use this email to post issues or feature requests (only important business/personal contact).

...
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Cycle DBAL is maintained by [Spiral Scout](https://spiralscout.com/). For commer

## πŸ”– Licensing

Cycle DBAL is available under the [MIT license](/LICENSE).
Cycle DBAL is available under the [MIT license](/LICENSE.md).

<br>

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,5 @@ foreach ($users->select()->where(['name' => 'test']) as $u) {

## License:

MIT License (MIT). Please see [`LICENSE`](./LICENSE) for more information. Maintained
MIT License (MIT). Please see [`LICENSE`](./LICENSE.md) for more information. Maintained
by [Spiral Scout](https://spiralscout.com).
Loading