File tree 3 files changed +40
-49
lines changed
3 files changed +40
-49
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ $schema : "https://docs.renovatebot.com/renovate-schema.json" ,
3
+ extends : [ "config:recommended" ] ,
4
+ schedule : [ "* 19-21 1 * *" ] ,
5
+ nix : {
6
+ enabled : true ,
7
+ } ,
8
+ separateMajorMinor : false ,
9
+ packageRules : [
10
+ {
11
+ groupName : "python dependencies" ,
12
+ groupSlug : "python" ,
13
+ matchManagers : [ "pep621" ] ,
14
+ } ,
15
+ {
16
+ groupName : "node dependencies" ,
17
+ groupSlug : "node" ,
18
+ matchManagers : [ "npm" ] ,
19
+ } ,
20
+ {
21
+ groupName : "github actions" ,
22
+ groupSlug : "actions" ,
23
+ matchManagers : [ "github-actions" ] ,
24
+ } ,
25
+ {
26
+ groupName : "ubuntu" ,
27
+ groupSlug : "ubuntu" ,
28
+ matchDepNames : [ "ubuntu" ] ,
29
+ dependencyDashboardApproval : true , // manual update when deployment is updated
30
+ } ,
31
+ {
32
+ groupName : "nix flakes" ,
33
+ groupSlug : "nix" ,
34
+ matchManagers : [ "nix" ] ,
35
+ schedule : [ "* 19-21 1 */3 *" ] ,
36
+ } ,
37
+ ] ,
38
+ }
Original file line number Diff line number Diff line change 2
2
3
3
import runpy
4
4
5
- runpy .run_module ("evap" , run_name = "__main__" )
5
+ if __name__ == "__main__" :
6
+ runpy .run_module ("evap" , run_name = "__main__" )
You can’t perform that action at this time.
0 commit comments