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>
22 lines
763 B
TypeScript
22 lines
763 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GiteaTagsDatasource } from '../../datasource/gitea-tags';
|
|
import { GithubRunnersDatasource } from '../../datasource/github-runners';
|
|
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const displayName = 'GitHub Actions';
|
|
export const url = 'https://docs.github.com/en/actions';
|
|
export const categories: Category[] = ['ci'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [
|
|
'(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$',
|
|
'(^|/)action\\.ya?ml$',
|
|
],
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
GiteaTagsDatasource.id,
|
|
GithubTagsDatasource.id,
|
|
GithubRunnersDatasource.id,
|
|
];
|