forked from mirrors/nixpkgs
maintainers: clarify what fields are required
This commit is contained in:
parent
93dc2de29a
commit
0288ee587f
|
@ -1,5 +1,6 @@
|
||||||
# to run these tests (and the others)
|
# to run these tests (and the others)
|
||||||
# nix-build nixpkgs/lib/tests/release.nix
|
# nix-build nixpkgs/lib/tests/release.nix
|
||||||
|
# These tests should stay in sync with the comment in maintainers/maintainers-list.nix
|
||||||
{ # The pkgs used for dependencies for the testing itself
|
{ # The pkgs used for dependencies for the testing itself
|
||||||
pkgs ? import ../.. {}
|
pkgs ? import ../.. {}
|
||||||
, lib ? pkgs.lib
|
, lib ? pkgs.lib
|
||||||
|
|
|
@ -3,12 +3,13 @@
|
||||||
handle = {
|
handle = {
|
||||||
# Required
|
# Required
|
||||||
name = "Your name";
|
name = "Your name";
|
||||||
email = "address@example.org";
|
|
||||||
|
|
||||||
# Optional
|
# Optional, but at least one of email, matrix or githubId must be given
|
||||||
|
email = "address@example.org";
|
||||||
matrix = "@user:example.org";
|
matrix = "@user:example.org";
|
||||||
github = "GithubUsername";
|
github = "GithubUsername";
|
||||||
githubId = your-github-id;
|
githubId = your-github-id;
|
||||||
|
|
||||||
keys = [{
|
keys = [{
|
||||||
fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333";
|
fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333";
|
||||||
}];
|
}];
|
||||||
|
@ -25,6 +26,9 @@
|
||||||
- `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/<userhandle>`,
|
- `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/<userhandle>`,
|
||||||
- `keys` is a list of your PGP/GPG key fingerprints.
|
- `keys` is a list of your PGP/GPG key fingerprints.
|
||||||
|
|
||||||
|
Specifying a GitHub account ensures that you automatically get a review request on
|
||||||
|
pull requests that modify a package for which you are a maintainer.
|
||||||
|
|
||||||
`handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient.
|
`handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient.
|
||||||
|
|
||||||
If `github` begins with a numeral, `handle` should be prefixed with an underscore.
|
If `github` begins with a numeral, `handle` should be prefixed with an underscore.
|
||||||
|
|
Loading…
Reference in a new issue