mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
16 lines
509 B
TypeScript
16 lines
509 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GitlabTagsDatasource } from '../../datasource/gitlab-tags';
|
|
import { extractPackageFile } from './extract';
|
|
|
|
export { extractPackageFile };
|
|
|
|
export const displayName = 'GitLab CI/CD include';
|
|
export const url = 'https://docs.gitlab.com/ee/ci/yaml/includes.html';
|
|
export const categories: Category[] = ['ci'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['\\.gitlab-ci\\.ya?ml$'],
|
|
};
|
|
|
|
export const supportedDatasources = [GitlabTagsDatasource.id];
|