mirror of https://github.com/renovatebot/renovate
18 lines
475 B
TypeScript
18 lines
475 B
TypeScript
import { hash } from '../../util/hash';
|
|
|
|
export function repoFingerprint(
|
|
repoId: number | string,
|
|
endpoint: string | undefined,
|
|
): string {
|
|
const input = endpoint ? `${endpoint}::${repoId}` : `${repoId}`;
|
|
const fingerprint = hash(input);
|
|
return fingerprint;
|
|
}
|
|
|
|
export function getNewBranchName(branchName?: string): string | undefined {
|
|
if (branchName && !branchName.startsWith('refs/heads/')) {
|
|
return `refs/heads/${branchName}`;
|
|
}
|
|
return branchName;
|
|
}
|