UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

31 lines (30 loc) 1.36 kB
import { __exportAll } from "../../../_virtual/_rolldown/runtime.js"; import { GiteaTagsDatasource } from "../../datasource/gitea-tags/index.js"; import { GithubDigestDatasource } from "../../datasource/github-digest/index.js"; import { GithubRunnersDatasource } from "../../datasource/github-runners/index.js"; import { GithubTagsDatasource } from "../../datasource/github-tags/index.js"; import { knownDepTypes } from "./dep-types.js"; import { extractPackageFile } from "./extract.js"; //#region lib/modules/manager/github-actions/index.ts var github_actions_exports = /* @__PURE__ */ __exportAll({ categories: () => categories, defaultConfig: () => defaultConfig, displayName: () => displayName, extractPackageFile: () => extractPackageFile, knownDepTypes: () => knownDepTypes, supportedDatasources: () => supportedDatasources, url: () => url }); const displayName = "GitHub Actions"; const url = "https://docs.github.com/en/actions"; const categories = ["ci"]; const defaultConfig = { managerFilePatterns: ["/(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$/", "/(^|/)action\\.ya?ml$/"] }; const supportedDatasources = [ GiteaTagsDatasource.id, GithubDigestDatasource.id, GithubRunnersDatasource.id, GithubTagsDatasource.id ]; //#endregion export { github_actions_exports }; //# sourceMappingURL=index.js.map