-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpinact.nix
62 lines (55 loc) · 1.38 KB
/
pinact.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
lib,
pkgs,
config,
mkFormatterModule,
...
}:
let
cfg = config.programs.pinact;
settingsFormat = pkgs.formats.yaml { };
in
{
meta.maintainers = [ "katexochen" ];
imports = [
(mkFormatterModule {
name = "pinact";
args = [ "run" ];
includes = [
".github/workflows/*.yml"
".github/workflows/*.yaml"
"**/action.yml"
"**/action.yaml"
];
})
];
options.programs.pinact = {
update = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Update actions to latest versions.";
};
verify = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Verify if pairs of commit SHA and version are correct.";
};
settings = lib.mkOption {
type = lib.types.submodule { freeformType = settingsFormat.type; };
default = { };
description = ''
Configuration for pinact, see
<link xlink:href="https://github.com/suzuki-shunsuke/pinact?tab=readme-ov-file#configuration"/>
for supported values.
'';
};
};
config = lib.mkIf cfg.enable {
settings.formatter.pinact = {
options =
lib.optional (cfg.settings != { }) "--config=${settingsFormat.generate "pinact.yaml" cfg.settings}"
++ lib.optional (cfg.update) "--update"
++ lib.optional (cfg.verify) "--verify";
};
};
}