mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
47 lines
1 KiB
TypeScript
47 lines
1 KiB
TypeScript
export type SkipReason =
|
|
| 'contains-variable'
|
|
| 'disabled'
|
|
| 'empty'
|
|
| 'file-dependency'
|
|
| 'file'
|
|
| 'git-dependency'
|
|
| 'git-plugin'
|
|
| 'ignored'
|
|
| 'internal-error'
|
|
| 'internal-package'
|
|
| 'invalid-config'
|
|
| 'invalid-dependency-specification'
|
|
| 'invalid-name'
|
|
| 'invalid-sha256'
|
|
| 'invalid-url'
|
|
| 'invalid-value'
|
|
| 'invalid-version'
|
|
| 'local-chart'
|
|
| 'local-dependency'
|
|
| 'local'
|
|
| 'multiple-constraint-dep'
|
|
| 'name-placeholder'
|
|
| 'no-repository'
|
|
| 'no-source-match'
|
|
| 'no-source'
|
|
| 'non-hex-dep-types'
|
|
| 'not-a-version'
|
|
| 'path-dependency'
|
|
| 'placeholder-url'
|
|
| 'unknown-engines'
|
|
| 'unknown-registry'
|
|
| 'unknown-volta'
|
|
| 'unspecified-version'
|
|
| 'unsupported-chart-type'
|
|
| 'unsupported-datasource'
|
|
| 'unsupported-remote'
|
|
| 'unsupported-url'
|
|
| 'unsupported-version'
|
|
| 'unsupported'
|
|
| 'unversioned-reference'
|
|
| 'version-placeholder'
|
|
| 'is-pinned'
|
|
| 'missing-depname'
|
|
| 'recursive-placeholder'
|
|
| 'github-token-required'
|
|
| 'inherited-dependency';
|