Skip to content
Snippets Groups Projects
Unverified Commit f5dc5ebc authored by Sergei Zharinov's avatar Sergei Zharinov Committed by GitHub
Browse files

fix: Match both `yaml` and `yml` in all managers (#22416)

parent c1468787
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ import { extractAllPackageFiles, extractPackageFile } from './extract'; ...@@ -4,7 +4,7 @@ import { extractAllPackageFiles, extractPackageFile } from './extract';
export { extractAllPackageFiles, extractPackageFile }; export { extractAllPackageFiles, extractPackageFile };
export const defaultConfig = { export const defaultConfig = {
fileMatch: ['(^|/)batect(-bundle)?\\.yml$'], fileMatch: ['(^|/)batect(-bundle)?\\.ya?ml$'],
}; };
export const supportedDatasources = [GitTagsDatasource.id]; export const supportedDatasources = [GitTagsDatasource.id];
...@@ -9,7 +9,7 @@ export const displayName = 'CircleCI'; ...@@ -9,7 +9,7 @@ export const displayName = 'CircleCI';
export const url = 'https://circleci.com/docs/configuration-reference'; export const url = 'https://circleci.com/docs/configuration-reference';
export const defaultConfig = { export const defaultConfig = {
fileMatch: ['(^|/)\\.circleci/config\\.yml$'], fileMatch: ['(^|/)\\.circleci/config\\.ya?ml$'],
}; };
export const supportedDatasources = [DockerDatasource.id, OrbDatasource.id]; export const supportedDatasources = [DockerDatasource.id, OrbDatasource.id];
import { regEx } from '../../../util/regex'; import { regEx } from '../../../util/regex';
export const systemManifestRegex = export const systemManifestRegex =
'(^|/)flux-system/(?:.+/)?gotk-components\\.yaml$'; '(^|/)flux-system/(?:.+/)?gotk-components\\.ya?ml$';
export function isSystemManifest(file: string): boolean { export function isSystemManifest(file: string): boolean {
return regEx(systemManifestRegex).test(file); return regEx(systemManifestRegex).test(file);
......
...@@ -4,7 +4,7 @@ import { extractPackageFile } from './extract'; ...@@ -4,7 +4,7 @@ import { extractPackageFile } from './extract';
export { extractPackageFile }; export { extractPackageFile };
export const defaultConfig = { export const defaultConfig = {
fileMatch: ['\\.gitlab-ci\\.yml$'], fileMatch: ['\\.gitlab-ci\\.ya?ml$'],
}; };
export const supportedDatasources = [GitlabTagsDatasource.id]; export const supportedDatasources = [GitlabTagsDatasource.id];
...@@ -7,7 +7,7 @@ export const language: ProgrammingLanguage = 'docker'; ...@@ -7,7 +7,7 @@ export const language: ProgrammingLanguage = 'docker';
export { extractAllPackageFiles, extractPackageFile }; export { extractAllPackageFiles, extractPackageFile };
export const defaultConfig = { export const defaultConfig = {
fileMatch: ['\\.gitlab-ci\\.yml$'], fileMatch: ['\\.gitlab-ci\\.ya?ml$'],
}; };
export const supportedDatasources = [DockerDatasource.id]; export const supportedDatasources = [DockerDatasource.id];
...@@ -6,7 +6,7 @@ export const defaultConfig = { ...@@ -6,7 +6,7 @@ export const defaultConfig = {
stable: 'https://charts.helm.sh/stable', stable: 'https://charts.helm.sh/stable',
}, },
commitMessageTopic: 'helm chart {{depName}}', commitMessageTopic: 'helm chart {{depName}}',
fileMatch: ['(^|/)requirements\\.yaml$'], fileMatch: ['(^|/)requirements\\.ya?ml$'],
}; };
export const supportedDatasources = [HelmDatasource.id]; export const supportedDatasources = [HelmDatasource.id];
...@@ -3,7 +3,7 @@ export { extractPackageFile } from './extract'; ...@@ -3,7 +3,7 @@ export { extractPackageFile } from './extract';
export const defaultConfig = { export const defaultConfig = {
commitMessageTopic: 'helm values {{depName}}', commitMessageTopic: 'helm values {{depName}}',
fileMatch: ['(^|/)values\\.yaml$'], fileMatch: ['(^|/)values\\.ya?ml$'],
pinDigests: false, pinDigests: false,
}; };
......
...@@ -10,7 +10,7 @@ export const defaultConfig = { ...@@ -10,7 +10,7 @@ export const defaultConfig = {
stable: 'https://charts.helm.sh/stable', stable: 'https://charts.helm.sh/stable',
}, },
commitMessageTopic: 'helm chart {{depName}}', commitMessageTopic: 'helm chart {{depName}}',
fileMatch: ['(^|/)helmfile\\.yaml$'], fileMatch: ['(^|/)helmfile\\.ya?ml$'],
}; };
export const supportedDatasources = [HelmDatasource.id, DockerDatasource.id]; export const supportedDatasources = [HelmDatasource.id, DockerDatasource.id];
...@@ -11,7 +11,7 @@ export const defaultConfig = { ...@@ -11,7 +11,7 @@ export const defaultConfig = {
stable: 'https://charts.helm.sh/stable', stable: 'https://charts.helm.sh/stable',
}, },
commitMessageTopic: 'helm chart {{depName}}', commitMessageTopic: 'helm chart {{depName}}',
fileMatch: ['(^|/)Chart\\.yaml$'], fileMatch: ['(^|/)Chart\\.ya?ml$'],
}; };
export const supportedDatasources = [DockerDatasource.id, HelmDatasource.id]; export const supportedDatasources = [DockerDatasource.id, HelmDatasource.id];
...@@ -10,7 +10,7 @@ export const supportedDatasources = [ ...@@ -10,7 +10,7 @@ export const supportedDatasources = [
export const defaultConfig = { export const defaultConfig = {
commitMessageTopic: 'pre-commit hook {{depName}}', commitMessageTopic: 'pre-commit hook {{depName}}',
enabled: false, enabled: false,
fileMatch: ['(^|/)\\.pre-commit-config\\.yaml$'], fileMatch: ['(^|/)\\.pre-commit-config\\.ya?ml$'],
prBodyNotes: [ prBodyNotes: [
'Note: The `pre-commit` manager in Renovate is not supported by the `pre-commit` maintainers or community. Please do not report any problems there, instead [create a Discussion in the Renovate repository](https://github.com/renovatebot/renovate/discussions/new) if you have any questions.', 'Note: The `pre-commit` manager in Renovate is not supported by the `pre-commit` maintainers or community. Please do not report any problems there, instead [create a Discussion in the Renovate repository](https://github.com/renovatebot/renovate/discussions/new) if you have any questions.',
], ],
......
...@@ -9,7 +9,7 @@ export const language: ProgrammingLanguage = 'node'; ...@@ -9,7 +9,7 @@ export const language: ProgrammingLanguage = 'node';
export const supportedDatasources = [GithubTagsDatasource.id]; export const supportedDatasources = [GithubTagsDatasource.id];
export const defaultConfig = { export const defaultConfig = {
fileMatch: ['^\\.travis\\.yml$'], fileMatch: ['^\\.travis\\.ya?ml$'],
major: { major: {
enabled: false, enabled: false,
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment