Skip to content
Snippets Groups Projects
Unverified Commit 49f5ac0b authored by elmaso1620's avatar elmaso1620 Committed by GitHub
Browse files

feat: expose sourceRepo, sourceRepoOrg and sourceRepoName (#13620)

parent 3b651408
No related branches found
No related tags found
No related merge requests found
......@@ -116,6 +116,9 @@ export const allowedFields = {
releaseNotes: 'A ChangeLogNotes object for the release',
repository: 'The current repository',
semanticPrefix: 'The fully generated semantic prefix for commit messages',
sourceRepo: 'The repository in the sourceUrl, if present',
sourceRepoName: 'The repository name in the sourceUrl, if present',
sourceRepoOrg: 'The repository organization in the sourceUrl, if present',
sourceRepoSlug: 'The slugified pathname of the sourceUrl, if present',
sourceUrl: 'The source URL for the package',
updateType: 'One of digest, pin, rollback, patch, minor, major, replacement',
......
......@@ -142,7 +142,42 @@ describe('workers/repository/updates/flatten', () => {
};
const res = await flattenUpdates(config, packageFiles);
expect(res).toHaveLength(14);
expect(res.filter((update) => update.sourceRepoSlug)).toHaveLength(3);
expect(
res.filter((update) => update.sourceRepoSlug)[0].sourceRepoSlug
).toBe('org-repo');
expect(res.filter((update) => update.sourceRepo)[0].sourceRepo).toBe(
'org/repo'
);
expect(
res.filter((update) => update.sourceRepoOrg)[0].sourceRepoOrg
).toBe('org');
expect(
res.filter((update) => update.sourceRepoName)[0].sourceRepoName
).toBe('repo');
expect(
res.filter((update) => update.sourceRepoSlug)[1].sourceRepoSlug
).toBe('org-repo');
expect(res.filter((update) => update.sourceRepo)[1].sourceRepo).toBe(
'org/repo'
);
expect(
res.filter((update) => update.sourceRepoOrg)[1].sourceRepoOrg
).toBe('org');
expect(
res.filter((update) => update.sourceRepoName)[1].sourceRepoName
).toBe('repo');
expect(
res.filter((update) => update.sourceRepoSlug)[2].sourceRepoSlug
).toBe('nodejs-node');
expect(res.filter((update) => update.sourceRepo)[2].sourceRepo).toBe(
'nodejs/node'
);
expect(
res.filter((update) => update.sourceRepoOrg)[2].sourceRepoOrg
).toBe('nodejs');
expect(
res.filter((update) => update.sourceRepoName)[2].sourceRepoName
).toBe('node');
expect(
res.filter((r) => r.updateType === 'lockFileMaintenance')
).toHaveLength(2);
......
......@@ -42,6 +42,18 @@ export function applyUpdateConfig(input: BranchUpgradeConfig): any {
.replace(regEx(/^\//), '') // remove leading slash
.replace(regEx(/\//g), '-') // change slashes to hyphens
.replace(regEx(/-+/g), '-'); // remove multiple hyphens
updateConfig.sourceRepo = parsedSourceUrl.pathname.replace(
regEx(/^\//),
''
); // remove leading slash
updateConfig.sourceRepoOrg = updateConfig.sourceRepo.replace(
regEx(/\/.*/g),
''
); // remove everything after first slash
updateConfig.sourceRepoName = updateConfig.sourceRepo.replace(
regEx(/.*\//g),
''
); // remove everything up to the last slash
}
}
generateBranchName(updateConfig);
......
......@@ -69,6 +69,9 @@ export interface BranchUpgradeConfig
changelogUrl?: string;
dependencyUrl?: string;
sourceUrl?: string;
sourceRepo?: string;
sourceRepoOrg?: string;
sourceRepoName?: string;
}
export type PrBlockedBy =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment