Merge pull request #19472 from backstage/repo-tools/pick-first-owner

[repo-tools] Default created entities to using the first listed `CODEOWNER` as owner
This commit is contained in:
Patrik Oldsberg
2023-08-21 16:36:51 +02:00
committed by GitHub
2 changed files with 8 additions and 1 deletions
@@ -59,7 +59,7 @@ export function getOwnerFromCodeowners(
): string {
const relPath = relativePath('.', absPath);
const possibleOwners = getPossibleCodeowners(codeowners, relPath);
const owner = possibleOwners.slice(-1)[0];
const owner = possibleOwners[0];
if (!owner) {
throw new Error(`${relPath} isn't owned by anyone in CODEOWNERS`);