mirror of
https://gitlab.com/TECHNOFAB/soonix.git
synced 2026-02-02 07:15:06 +01:00
chore: add renovate
This commit is contained in:
parent
078034b01e
commit
e9860d65a0
2 changed files with 42 additions and 0 deletions
22
.gitlab/renovate.json5
Normal file
22
.gitlab/renovate.json5
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"config:recommended"
|
||||||
|
],
|
||||||
|
"gitlabci": {
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
|
"lockFileMaintenance": {
|
||||||
|
"enabled": true,
|
||||||
|
"extends": [
|
||||||
|
"schedule:monthly"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"nix": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"postUpgradeTasks": {
|
||||||
|
"commands": [
|
||||||
|
"nix-portable nix run .#soonix:update"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -9,6 +9,26 @@ in
|
||||||
(soonix.make {
|
(soonix.make {
|
||||||
hooks = {
|
hooks = {
|
||||||
ci = ci.soonix;
|
ci = ci.soonix;
|
||||||
|
renovate = {
|
||||||
|
output = ".gitlab/renovate.json5";
|
||||||
|
data = {
|
||||||
|
extends = ["config:recommended"];
|
||||||
|
postUpgradeTasks.commands = [
|
||||||
|
"nix-portable nix run .#soonix:update"
|
||||||
|
];
|
||||||
|
lockFileMaintenance = {
|
||||||
|
enabled = true;
|
||||||
|
extends = ["schedule:monthly"];
|
||||||
|
};
|
||||||
|
nix.enabled = true;
|
||||||
|
gitlabci.enabled = false;
|
||||||
|
};
|
||||||
|
hook = {
|
||||||
|
mode = "copy";
|
||||||
|
gitignore = false;
|
||||||
|
};
|
||||||
|
opts.format = "json";
|
||||||
|
};
|
||||||
test = {
|
test = {
|
||||||
output = "test.yaml";
|
output = "test.yaml";
|
||||||
generator = "nix";
|
generator = "nix";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue