CODEOWNERS 922 B

1234567891011121314151617181920212223242526
  1. # SPDX-FileCopyrightText: 2024 Christina Sørensen
  2. # SPDX-License-Identifier: EUPL-1.2
  3. # Lines starting with a '#' are comments.
  4. # Each line is a file pattern followed by one or more owners.
  5. # These owners will be the default owners for everything in the repository.
  6. # * @global-owner1 @global-owner2
  7. # The 'docs/*' pattern will match files like
  8. # 'docs/getting-started.md' but not further nested files like
  9. # 'docs/build-app/troubleshooting.md'.
  10. # docs/* @doc-owner-team
  11. # You can also use email addresses if the user isn't on GitHub.
  12. # *.py admin@example.com
  13. # You can use a '*' at the end of a pattern to match all files
  14. # of a particular type.
  15. # *.* @all-file-types-owner
  16. # Order is important. The last matching pattern has the most precedence.
  17. # This means if a pull request touches both *.js and *.css files,
  18. # it will only request a review from @js-owner, not @css-owner.
  19. # *.js @js-owner
  20. # *.css @css-owner