1# Code owners file. 2# This file controls who is tagged for review for any given pull request. 3 4# For syntax help see: 5# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax 6{% if 'codeowner_team' in metadata['repo'] %} 7# The {{ metadata['repo']['codeowner_team'] }} is the default owner for changes in this repo 8* @googleapis/yoshi-java {{ metadata['repo']['codeowner_team'] }} 9{% if 'library_type' in metadata['repo'] and metadata['repo']['library_type'] != 'GAPIC_AUTO' %} 10# for handwritten libraries, keep codeowner_team in .repo-metadata.json as owner 11**/*.java {{ metadata['repo']['codeowner_team'] }} 12{% endif %} 13{% else %} 14* @googleapis/yoshi-java 15{% endif %} 16# The java-samples-reviewers team is the default owner for samples changes 17samples/**/*.java @googleapis/java-samples-reviewers 18 19# Generated snippets should not be owned by samples reviewers 20samples/snippets/generated/ @googleapis/yoshi-java 21