UNPKG

@cdwr/nx-migrate-action

Version:

The Nx Migrate GitHub Action will keep your workspace up to date.

10 lines (9 loc) 377 B
import type { MigrateConfig } from './types'; /** * Lookup open pull request from feature branch name. * * @param config Migration configuration * @param latestVersion Latest Nx version * @returns pull request number if found, otherwise `undefined` */ export declare const lookupPullRequest: (config: MigrateConfig, latestVersion: string) => Promise<number | undefined>;