-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathindex.ts
More file actions
25 lines (21 loc) · 928 Bytes
/
index.ts
File metadata and controls
25 lines (21 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import type { Category } from '../../../constants/index.ts';
import { GiteaTagsDatasource } from '../../datasource/gitea-tags/index.ts';
import { GithubDigestDatasource } from '../../datasource/github-digest/index.ts';
import { GithubRunnersDatasource } from '../../datasource/github-runners/index.ts';
import { GithubTagsDatasource } from '../../datasource/github-tags/index.ts';
export { extractPackageFile } from './extract.ts';
export const displayName = 'GitHub Actions';
export const url = 'https://docs.github.com/en/actions';
export const categories: Category[] = ['ci'];
export const defaultConfig = {
managerFilePatterns: [
'/(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$/',
'/(^|/)action\\.ya?ml$/',
],
};
export const supportedDatasources = [
GiteaTagsDatasource.id,
GithubDigestDatasource.id,
GithubRunnersDatasource.id,
GithubTagsDatasource.id,
];