Skip to content
Snippets Groups Projects
Select Git revision
  • c70d912c2f546e09b2ce0a43d2257e580b5b9678
  • master default protected
  • v1.13.0
  • v1.12.0
  • v1.11.0
  • v1.10.0
  • v1.9.0
  • v1.8.0
  • v1.7.0
  • v1.6.0
  • v1.5.0
  • v1.4.0
  • v1.3.1
  • v1.3.0
  • v1.2.0
  • v1.1.1
  • v1.1.0
  • v1.0.2
  • v1.0.1
  • v1.0.0
20 results

git.go

Blame
  • commit.ts 1.73 KiB
    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,
      });
    }