27 lines
686 B
Cheetah
27 lines
686 B
Cheetah
module.exports = {
|
|
endpoint: "https://git.coopcloud.tech/api/v1/",
|
|
token: '{{ secret "api_token" }}',
|
|
platform: "gitea",
|
|
unicodeEmoji: false,
|
|
baseBranches: ["master", "main"],
|
|
"docker-compose": {
|
|
fileMatch: "(^|/)compose[^/]*\.ya?ml$",
|
|
},
|
|
"postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths"],
|
|
"suppressNotifications": ["artifactErrors"],
|
|
"requiredStatusChecks": null,
|
|
"packageRules": [
|
|
{
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"matchCurrentVersion": "!/^0/",
|
|
"automerge": false
|
|
}
|
|
],
|
|
repositories: [
|
|
"coop-cloud/abra",
|
|
"coop-cloud/docs.coopcloud.tech",
|
|
"coop-cloud/tagcmp",
|
|
"servers.coop/libcapsul"
|
|
]
|
|
};
|