How to use the release-please/build/src/github-release.GitHubRelease 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
packageName: string,
  repoUrl: string,
  github: GitHubAPI
) {
  const releaseOptions: GitHubReleaseOptions = {
    label: 'autorelease: pending',
    repoUrl,
    packageName,
    apiUrl: DEFAULT_API_URL,
    octokitAPIs: {
      octokit: github,
      graphql: github.graphql,
      request: github.request,
    },
  };
  const ghr = new GitHubRelease(releaseOptions);
  Runner.releaser(ghr);
}