Skip to content

Commit 7d976f0

Browse files
authored
Merge pull request #10 from mlabs-haskell/szg251/auto-flake-update
Automatic flake updates
2 parents d66d39c + fa5d847 commit 7d976f0

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
/result
44
.direnv
55
.pre-commit-config.yaml
6+
.DS_Store

flake.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,19 @@
7474
inherit cargoArtifacts;
7575
});
7676
};
77+
hercules-ci.flake-update = {
78+
enable = true;
79+
updateBranch = "updated-flake-lock";
80+
# Next two parameters should always be set explicitly
81+
createPullRequest = true;
82+
autoMergeMethod = null;
83+
when = {
84+
# Perform update by Sundays at 12:45
85+
minute = 45;
86+
hour = 12;
87+
dayOfWeek = "Sun";
88+
};
89+
};
7790
};
7891

7992
}

0 commit comments

Comments
 (0)