(github, targetBranch: string)
| 95 | } |
| 96 | |
| 97 | async function loadManifest(github, targetBranch: string) { |
| 98 | return Manifest.fromManifest( |
| 99 | github, |
| 100 | targetBranch, |
| 101 | process.env.RELEASE_PLEASE_CONFIG_FILE || DEFAULT_CONFIG_FILE, |
| 102 | process.env.RELEASE_PLEASE_MANIFEST_FILE || DEFAULT_MANIFEST_FILE, |
| 103 | { |
| 104 | fork: boolEnv('RELEASE_PLEASE_FORK'), |
| 105 | skipLabeling: boolEnv('RELEASE_PLEASE_SKIP_LABELING'), |
| 106 | } |
| 107 | ) |
| 108 | } |
| 109 | |
| 110 | async function main() { |
| 111 | console.log(`Running release-please version: ${VERSION}`) |