mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import is from '@sindresorhus/is';
|
|
import minimatch from 'minimatch';
|
|
import { CONFIG_SECRETS_EXPOSED } from '../../constants/error-messages';
|
|
import { logger } from '../../logger';
|
|
import { commitFiles } from '../../util/git';
|
|
import { sanitize } from '../../util/sanitize';
|
|
import { BranchConfig } from '../common';
|
|
|
|
export function commitFilesToBranch(
|
|
config: BranchConfig
|
|
): Promise<string | null> {
|
|
let updatedFiles = config.updatedPackageFiles.concat(config.updatedArtifacts);
|
|
// istanbul ignore if
|
|
if (is.nonEmptyArray(config.excludeCommitPaths)) {
|
|
updatedFiles = updatedFiles.filter((f) => {
|
|
const filename = f.name === '|delete|' ? f.contents.toString() : f.name;
|
|
const matchesExcludePaths = config.excludeCommitPaths.some((path) =>
|
|
minimatch(filename, path, { dot: true })
|
|
);
|
|
if (matchesExcludePaths) {
|
|
logger.debug(`Excluding ${filename} from commit`);
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
}
|
|
if (!is.nonEmptyArray(updatedFiles)) {
|
|
logger.debug(`No files to commit`);
|
|
return null;
|
|
}
|
|
const fileLength = [...new Set(updatedFiles.map((file) => file.name))].length;
|
|
logger.debug(`${fileLength} file(s) to commit`);
|
|
// istanbul ignore if
|
|
if (config.dryRun) {
|
|
logger.info('DRY-RUN: Would commit files to branch ' + config.branchName);
|
|
return null;
|
|
}
|
|
// istanbul ignore if
|
|
if (
|
|
config.branchName !== sanitize(config.branchName) ||
|
|
config.commitMessage !== sanitize(config.commitMessage)
|
|
) {
|
|
throw new Error(CONFIG_SECRETS_EXPOSED);
|
|
}
|
|
// API will know whether to create new branch or not
|
|
return commitFiles({
|
|
branchName: config.branchName,
|
|
files: updatedFiles,
|
|
message: config.commitMessage,
|
|
force: !!config.forceCommit,
|
|
});
|
|
}
|