mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 22:29:06 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
12 lines
422 B
TypeScript
12 lines
422 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { JenkinsPluginsDatasource } from '../../datasource/jenkins-plugins';
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const url = 'https://www.jenkins.io/doc';
|
|
export const categories: Category[] = ['ci'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)plugins\\.(txt|ya?ml)$'],
|
|
};
|
|
|
|
export const supportedDatasources = [JenkinsPluginsDatasource.id];
|