Skip to content

Commit e6d15a2

Browse files
[Backport release-25.05] maintainers: require GitHub handle (enforce via CI) (#439453)
2 parents c475510 + 2f2221f commit e6d15a2

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

lib/tests/maintainer-module.nix

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ in
77
name = lib.mkOption {
88
type = types.str;
99
};
10+
github = lib.mkOption {
11+
type = types.str;
12+
};
13+
githubId = lib.mkOption {
14+
type = types.ints.unsigned;
15+
};
1016
email = lib.mkOption {
1117
type = types.nullOr types.str;
1218
default = null;
@@ -15,14 +21,6 @@ in
1521
type = types.nullOr types.str;
1622
default = null;
1723
};
18-
github = lib.mkOption {
19-
type = types.nullOr types.str;
20-
default = null;
21-
};
22-
githubId = lib.mkOption {
23-
type = types.nullOr types.ints.unsigned;
24-
default = null;
25-
};
2624
keys = lib.mkOption {
2725
type = types.listOf (
2826
types.submodule {

0 commit comments

Comments
 (0)