|
4 | 4 | handle = { |
5 | 5 | # Required |
6 | 6 | name = "Your name"; |
7 | | - |
8 | | - # Optional, but at least one of email, matrix or githubId must be given |
9 | | - email = "address@example.org"; |
10 | | - matrix = "@user:example.org"; |
11 | 7 | github = "GithubUsername"; |
12 | 8 | githubId = your-github-id; |
13 | 9 |
|
| 10 | + # Optional |
| 11 | + email = "address@example.org"; |
| 12 | + matrix = "@user:example.org"; |
14 | 13 | keys = [{ |
15 | 14 | fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333"; |
16 | 15 | }]; |
|
21 | 20 |
|
22 | 21 | - `handle` is the handle you are going to use in nixpkgs expressions, |
23 | 22 | - `name` is a name that people would know and recognize you by, |
24 | | - - `email` is your maintainer email address, |
25 | | - - `matrix` is your Matrix user ID, |
26 | 23 | - `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/<userhandle>`), |
27 | 24 | - `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/<userhandle>`, |
| 25 | + - `email` is your maintainer email address, |
| 26 | + - `matrix` is your Matrix user ID, |
28 | 27 | - `keys` is a list of your PGP/GPG key fingerprints. |
29 | 28 |
|
30 | | - Specifying a GitHub account ensures that you automatically: |
31 | | - - get invited to the @NixOS/nixpkgs-maintainers team ; |
32 | | - - once you are part of the @NixOS org, OfBorg will request you review |
33 | | - pull requests that modify a package for which you are a maintainer. |
| 29 | + Specifying a GitHub account is required, because: |
| 30 | + - you will get invited to the @NixOS/nixpkgs-maintainers team; |
| 31 | + - once you are part of the @NixOS org, you can be requested for review; |
| 32 | + - once you can be requested for review, CI will request you review pull requests that modify a package for which you are a maintainer. |
34 | 33 |
|
35 | 34 | `handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient. |
36 | 35 |
|
|
0 commit comments