renovate/lib/config/types.ts
2022-06-25 10:10:35 +02:00

466 lines
12 KiB
TypeScript

import type { LogLevel } from 'bunyan';
import type { Range } from 'semver';
import type { HostRule } from '../types';
import type { GitNoVerifyOption } from '../util/git/types';
export type RenovateConfigStage =
| 'global'
| 'repository'
| 'package'
| 'branch'
| 'pr';
export type RepositoryCacheConfig = 'disabled' | 'enabled' | 'reset';
export type DryRunConfig = 'extract' | 'lookup' | 'full';
export type RequiredConfig = 'required' | 'optional' | 'ignored';
export interface GroupConfig extends Record<string, unknown> {
branchName?: string;
branchTopic?: string;
}
// TODO: Proper typings
export interface RenovateSharedConfig {
$schema?: string;
automerge?: boolean;
automergeStrategy?: MergeStrategy;
pruneBranchAfterAutomerge?: boolean;
branchPrefix?: string;
branchPrefixOld?: string;
branchName?: string;
manager?: string | null;
commitMessage?: string;
commitMessagePrefix?: string;
confidential?: boolean;
draftPR?: boolean;
enabled?: boolean;
enabledManagers?: string[];
extends?: string[];
fileMatch?: string[];
force?: RenovateConfig;
group?: GroupConfig;
groupName?: string;
groupSlug?: string;
includePaths?: string[];
ignoreDeps?: string[];
ignorePaths?: string[];
ignoreTests?: boolean;
labels?: string[];
addLabels?: string[];
dependencyDashboardApproval?: boolean;
hashedBranchLength?: number;
npmrc?: string;
npmrcMerge?: boolean;
postUpgradeTasks?: PostUpgradeTasks;
prBodyColumns?: string[];
prBodyDefinitions?: Record<string, string>;
prCreation?: 'immediate' | 'not-pending' | 'status-success' | 'approval';
productLinks?: Record<string, string>;
prPriority?: number;
rebaseLabel?: string;
respectLatest?: boolean;
stopUpdatingLabel?: string;
rebaseWhen?: string;
recreateClosed?: boolean;
repository?: string;
repositoryCache?: RepositoryCacheConfig;
schedule?: string[];
automergeSchedule?: string[];
semanticCommits?: 'auto' | 'enabled' | 'disabled';
semanticCommitScope?: string | null;
semanticCommitType?: string;
suppressNotifications?: string[];
timezone?: string;
unicodeEmoji?: boolean;
gitIgnoredAuthors?: string[];
platformCommit?: boolean;
}
// Config options used only within the global worker
// The below should contain config options where stage=global
export interface GlobalOnlyConfig {
autodiscover?: boolean;
autodiscoverFilter?: string;
baseDir?: string;
cacheDir?: string;
detectHostRulesFromEnv?: boolean;
forceCli?: boolean;
gitNoVerify?: GitNoVerifyOption[];
gitPrivateKey?: string;
globalExtends?: string[];
logFile?: string;
logFileLevel?: LogLevel;
prCommitsPerRunLimit?: number;
privateKeyPath?: string;
privateKeyPathOld?: string;
redisUrl?: string;
repositories?: RenovateRepository[];
platform?: string;
endpoint?: string;
}
// Config options used within the repository worker, but not user configurable
// The below should contain config options where globalOnly=true
export interface RepoGlobalConfig {
allowCustomCrateRegistries?: boolean;
allowPlugins?: boolean;
allowPostUpgradeCommandTemplating?: boolean;
allowScripts?: boolean;
allowedPostUpgradeCommands?: string[];
binarySource?: 'docker' | 'global' | 'install';
customEnvVariables?: Record<string, string>;
dockerChildPrefix?: string;
dockerImagePrefix?: string;
dockerUser?: string;
dryRun?: DryRunConfig;
executionTimeout?: number;
gitTimeout?: number;
exposeAllEnv?: boolean;
githubTokenWarn?: boolean;
migratePresets?: Record<string, string>;
privateKey?: string;
privateKeyOld?: string;
localDir?: string;
cacheDir?: string;
platform?: string;
endpoint?: string;
}
export interface LegacyAdminConfig {
localDir?: string;
logContext?: string;
onboarding?: boolean;
onboardingBranch?: string;
onboardingCommitMessage?: string;
onboardingNoDeps?: boolean;
onboardingPrTitle?: string;
onboardingConfig?: RenovateSharedConfig;
onboardingConfigFileName?: string;
requireConfig?: RequiredConfig;
}
export type ExecutionMode = 'branch' | 'update';
export interface PostUpgradeTasks {
commands?: string[];
fileFilters?: string[];
executionMode: ExecutionMode;
}
export type UpdateConfig<
T extends RenovateSharedConfig = RenovateSharedConfig
> = Partial<Record<UpdateType, T | null>>;
export type RenovateRepository =
| string
| {
repository: string;
secrets?: Record<string, string>;
};
export interface RegexManagerTemplates {
depNameTemplate?: string;
packageNameTemplate?: string;
datasourceTemplate?: string;
versioningTemplate?: string;
depTypeTemplate?: string;
currentValueTemplate?: string;
currentDigestTemplate?: string;
extractVersionTemplate?: string;
registryUrlTemplate?: string;
}
export interface RegExManager extends RegexManagerTemplates {
fileMatch: string[];
matchStrings: string[];
matchStringsStrategy?: string;
autoReplaceStringTemplate?: string;
}
export type UseBaseBranchConfigType = 'merge' | 'none';
// TODO: Proper typings
export interface RenovateConfig
extends LegacyAdminConfig,
RenovateSharedConfig,
UpdateConfig<PackageRule>,
AssigneesAndReviewersConfig,
ConfigMigration,
Record<string, unknown> {
depName?: string;
baseBranches?: string[];
useBaseBranchConfig?: UseBaseBranchConfigType;
baseBranch?: string;
defaultBranch?: string;
branchList?: string[];
description?: string | string[];
force?: RenovateConfig;
errors?: ValidationMessage[];
gitAuthor?: string;
hostRules?: HostRule[];
ignorePresets?: string[];
includeForks?: boolean;
isFork?: boolean;
fileList?: string[];
configWarningReuseIssue?: boolean;
dependencyDashboard?: boolean;
dependencyDashboardAutoclose?: boolean;
dependencyDashboardChecks?: Record<string, string>;
dependencyDashboardIssue?: number;
dependencyDashboardRebaseAllOpen?: boolean;
dependencyDashboardTitle?: string;
dependencyDashboardHeader?: string;
dependencyDashboardFooter?: string;
dependencyDashboardLabels?: string[];
packageFile?: string;
packageRules?: PackageRule[];
postUpdateOptions?: string[];
prConcurrentLimit?: number;
prHourlyLimit?: number;
defaultRegistryUrls?: string[];
registryUrls?: string[];
repoIsOnboarded?: boolean;
repoIsActivated?: boolean;
updateInternalDeps?: boolean;
updateType?: UpdateType;
warnings?: ValidationMessage[];
vulnerabilityAlerts?: RenovateSharedConfig;
regexManagers?: RegExManager[];
fetchReleaseNotes?: boolean;
secrets?: Record<string, string>;
constraints?: Record<string, string>;
}
export interface AllConfig extends RenovateConfig, GlobalOnlyConfig {}
export interface AssigneesAndReviewersConfig {
assigneesFromCodeOwners?: boolean;
assignees?: string[];
assigneesSampleSize?: number;
reviewersFromCodeOwners?: boolean;
reviewers?: string[];
reviewersSampleSize?: number;
additionalReviewers?: string[];
filterUnavailableUsers?: boolean;
}
export type UpdateType =
| 'major'
| 'minor'
| 'patch'
| 'pin'
| 'digest'
| 'pinDigest'
| 'lockFileMaintenance'
| 'lockfileUpdate'
| 'rollback'
| 'bump'
| 'replacement';
export type MatchStringsStrategy = 'any' | 'recursive' | 'combination';
export type MergeStrategy =
| 'auto'
| 'fast-forward'
| 'merge-commit'
| 'rebase'
| 'squash';
// TODO: Proper typings
export interface PackageRule
extends RenovateSharedConfig,
UpdateConfig,
Record<string, unknown> {
description?: string | string[];
matchFiles?: string[];
matchPaths?: string[];
matchLanguages?: string[];
matchBaseBranches?: string[];
matchManagers?: string | string[];
matchDatasources?: string[];
matchDepTypes?: string[];
matchPackageNames?: string[];
matchPackagePatterns?: string[];
matchPackagePrefixes?: string[];
excludePackageNames?: string[];
excludePackagePatterns?: string[];
excludePackagePrefixes?: string[];
matchCurrentVersion?: string | Range;
matchSourceUrlPrefixes?: string[];
matchSourceUrls?: string[];
matchUpdateTypes?: UpdateType[];
registryUrls?: string[];
}
export interface ValidationMessage {
topic: string;
message: string;
}
export interface RenovateOptionBase {
/**
* If true, the option can only be configured by people with access to the Renovate instance.
* Furthermore, the option should be documented in docs/usage/self-hosted-configuration.md.
*/
globalOnly?: boolean;
allowedValues?: string[];
allowString?: boolean;
cli?: boolean;
description: string;
env?: false | string;
/**
* Do not validate object children
*/
freeChoice?: boolean;
mergeable?: boolean;
autogenerated?: boolean;
name: string;
parent?: 'hostRules' | 'packageRules' | 'postUpgradeTasks' | 'regexManagers';
// used by tests
relatedOptions?: string[];
stage?: RenovateConfigStage;
experimental?: boolean;
experimentalDescription?: string;
experimentalIssues?: number[];
}
export interface RenovateArrayOption<
T extends string | number | Record<string, unknown> = Record<string, unknown>
> extends RenovateOptionBase {
default?: T[] | null;
mergeable?: boolean;
type: 'array';
subType?: 'string' | 'object' | 'number';
supportedManagers?: string[] | 'all';
supportedPlatforms?: string[] | 'all';
}
export interface RenovateStringArrayOption extends RenovateArrayOption<string> {
format?: 'regex';
subType: 'string';
supportedManagers?: string[] | 'all';
supportedPlatforms?: string[] | 'all';
}
export interface RenovateNumberArrayOption extends RenovateArrayOption<number> {
subType: 'number';
supportedManagers?: string[] | 'all';
supportedPlatforms?: string[] | 'all';
}
export interface RenovateBooleanOption extends RenovateOptionBase {
default?: boolean | null;
type: 'boolean';
supportedManagers?: string[] | 'all';
supportedPlatforms?: string[] | 'all';
}
export interface RenovateIntegerOption extends RenovateOptionBase {
default?: number | null;
type: 'integer';
supportedManagers?: string[] | 'all';
supportedPlatforms?: string[] | 'all';
}
export interface RenovateStringOption extends RenovateOptionBase {
default?: string | null;
format?: 'regex';
// Not used
replaceLineReturns?: boolean;
type: 'string';
supportedManagers?: string[] | 'all';
supportedPlatforms?: string[] | 'all';
}
export interface RenovateObjectOption extends RenovateOptionBase {
default?: any | null;
additionalProperties?: Record<string, unknown> | boolean;
mergeable?: boolean;
type: 'object';
supportedManagers?: string[] | 'all';
supportedPlatforms?: string[] | 'all';
}
export type RenovateOptions =
| RenovateStringOption
| RenovateNumberArrayOption
| RenovateStringArrayOption
| RenovateIntegerOption
| RenovateBooleanOption
| RenovateArrayOption
| RenovateObjectOption;
export interface PackageRuleInputConfig extends Record<string, unknown> {
versioning?: string;
packageFile?: string;
depType?: string;
depTypes?: string[];
depName?: string;
currentValue?: string | null;
currentVersion?: string;
lockedVersion?: string | null;
updateType?: UpdateType;
isBump?: boolean;
sourceUrl?: string | null;
language?: string;
baseBranch?: string;
manager?: string | null;
datasource?: string;
packageRules?: (PackageRule & PackageRuleInputConfig)[];
}
export interface ConfigMigration {
configMigration?: boolean;
}
export interface MigratedConfig {
isMigrated: boolean;
migratedConfig: RenovateConfig;
}
export interface MigratedRenovateConfig extends RenovateConfig {
endpoints?: HostRule[];
pathRules: PackageRule[];
packages: PackageRule[];
node?: RenovateConfig;
travis?: RenovateConfig;
gradle?: RenovateConfig;
}
export interface ManagerConfig extends RenovateConfig {
manager: string;
language?: string | null;
}
export interface ValidationResult {
errors: ValidationMessage[];
warnings: ValidationMessage[];
}