How to use the release-please/build/src/release-pr-factory.ReleasePRFactory.build function in release-please

To help you get started, we’ve selected a few release-please examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github googleapis / repo-automation-bots / packages / release-please / src / release-please.ts View on Github external
const buildOptions: BuildOptions = {
    packageName,
    repoUrl,
    apiUrl: DEFAULT_API_URL,
    octokitAPIs: {
      octokit: github,
      graphql: github.graphql,
      request: github.request,
    },
    bumpMinorPreMajor,
  };
  if (releaseLabels) {
    buildOptions.label = releaseLabels.join(',');
  }

  Runner.runner(ReleasePRFactory.build(releaseType, buildOptions));
}