@mattpolzin/harmony 5.5.0 → 5.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +144 -93
  2. package/harmony +622 -580
  3. package/man/harmony.1 +511 -0
  4. package/package.json +2 -1
package/README.md CHANGED
@@ -1,5 +1,27 @@
1
-
2
- # Harmony
1
+ % harmony(1) Version 5.5.1 | Harmony User's Guide
2
+
3
+ # NAME
4
+ Harmony - Harmonize with coworkers around GitHub reviewing
5
+
6
+ # SYNOPSIS
7
+ `harmony branch` \
8
+ `harmony config {property} [value]` \
9
+ `harmony contribute [options] {uri | pr-number}` \
10
+ `harmony graph [options] {team-slug}` \
11
+ `harmony health` \
12
+ `harmony help [subcommand]` \
13
+ `harmony label {label} [...]` \
14
+ `harmony list [team-slug]` \
15
+ `harmony pr [options]` \
16
+ `harmony quick` \
17
+ `harmony reflect` \
18
+ `harmony request {team-slug | +user-login} [options]` \
19
+ `harmony rq {team-slug | +user-login} [options]` \
20
+ `harmony sync` \
21
+ `harmony version` \
22
+ `harmony whoami`
23
+
24
+ # DESCRIPTION
3
25
  Harmony is a small tool that helps teams keep GitHub reviews running smoothly. It takes the work out of picking someone from a pool of developers to review a new PR. Harmony does this by heuristically determining who on a particular GitHub Team has the least current/recent review workload.
4
26
 
5
27
  Harmony offers a heuristic for PR review requests that is different than GitHub's round robin or weighted algorithms, but Harmony can also work well even if your team uses GitHub's automatic PR review requests ([see below](#deferring-to-github)).
@@ -56,7 +78,7 @@ The build script assumes a HEAD build of Idris 2 is installed on your system. Fo
56
78
 
57
79
  Build Harmony from source with a call to `make`. Then install it globally with `make install`.
58
80
 
59
- #### Docker Build
81
+ ### Docker Build
60
82
  If you want to build Harmony without installing Idris 2 on your system, you can build Harmony within a Docker container and then install the resulting Javascript onto your system.
61
83
 
62
84
  First, download the latest nightly Docker image:
@@ -66,7 +88,9 @@ docker pull mattpolzin2/idris-docker:nightly
66
88
 
67
89
  Then, from a directory containing this Harmony git repository, build Harmony:
68
90
  ```shell
69
- docker run --rm -v "$(pwd):/build" mattpolzin2/idris-docker:nightly bash -c "apt-get update && apt-get install -y git && cd /build && make"
91
+ docker run --rm -v "$(pwd):/build" \
92
+ mattpolzin2/idris-docker:nightly \
93
+ bash -c "apt-get update && apt-get install -y git && cd /build && make"
70
94
  ```
71
95
 
72
96
  At this point you are done with Docker. From the same directory, install Harmony globally:
@@ -117,94 +141,46 @@ Once configured, Harmony supports the following commands: `config`, `branch`, `p
117
141
  **Note on color output:**
118
142
  Harmony uses colored output for some commands. You can adjust these colors slightly with the `theme` configuration option. You can also use the `NO_COLOR` environment variable to disable all colored output. Lastly, Harmony will avoid colored output when it determines `stdout` is not a TTY device (as is the case for e.g. redirecting harmony output into a file or piping into `cat`: `harmony ... | cat`).
119
143
 
120
- ### Config
121
- Running `harmony config <property>` will read the given configuration property. `harmony config <property> <value>` will set the configuration property.
144
+ # SUBCOMMANDS
122
145
 
123
- Not all configuration properties can be read/set with this command.
124
- #### Properties
125
- - `requestTeams` (`true`/`false`) -- When picking a reviewer from a team, request the team as a reviewer as well.
126
- - `requestUsers` (`true`/`false`) -- When requesting a team as a reviewer, pick a user to review as well.
127
- - `commentOnRequest` (`none`/`name`/`at-mention`) -- When requesting a reviewer chosen by Harmony, comment on the pull request or not.
128
- - `branchParsing` (`none`/`jira`/`github`) -- Optionally extract a Jira ticket slug or GitHub issue number from the branch name and prepend it to the PR title or body to link the PR and ticket/issue.
129
- - `defaultRemote` (optional string) -- When pushing new branches, what remote destination should be used.
130
- - `mainBranch` (optional string) -- When creating a PR, this is the default base branch.
131
- - `theme` (`dark`/`light`) -- Use colors suited better for either a dark or light Terminal background.
132
- - `githubPAT` (optional string) -- If the `$GITHUB_PAT` and `$GH_TOKEN` environment variables are not set, this Personal Access Token is used to authenticate with GitHub.
133
-
134
- ### Branch
135
- Running `harmony branch` will print the URI for accessing the currently checked out branch on GitHub.
146
+ ## `branch`
147
+ Print the URI for accessing the currently checked out branch on GitHub.
136
148
 
137
149
  Many operating systems have an `open` command (though the name "open" is not ubiquitous); this means you can run something like `open $(harmony branch)` to open a web browser to the current branch on GitHub.
138
150
 
139
- ### PR
140
- Running `harmony pr [--draft] [#<label>, ...]` with a branch checked out will reach out to GitHub to determine if there is an open PR for that branch. If there is a PR, Harmony will print a URI that can be used to view the PR. If there is not a PR, Harmony will help you create one. New and existing PRs can be marked as drafts by specifying the `--draft` flag with the `pr` command.
141
-
142
- If you need to create a PR still, you will be prompted for a branch to open the PR against (merge into, eventually), a title for the PR, and a description for the PR. If you have an `EDITOR` environment variable set, Harmony will use that editor to get the PR description from you. If you have a PR template at `.github/PULL_REQUEST_TEMPLATE.md`, Harmony will also preload that into your editor. If you do not have an `EDITOR` environment variable set, you will still be able to enter a description from the command line but PR templates are only supported when an `EDITOR` is specified.
143
-
144
- You can also specify any number of labels to apply by prefixing them with '#'. For example, `harmony pr #backport #bugfix` would create a PR and apply the `backport` and `bugfix` labels.
145
-
146
- If you are using harmony from a script or some other environment without TTY support, harmony will print a GitHub URL that can be used to create the PR. This mode of operation will ignore the `--draft` and `#label` options.
147
-
148
- Many operating systems have an `open` command (though the name "open" is not ubiquitous); this means you can run something like `open $(harmony pr)` to open a web browser to an existing PR for the current branch.
149
-
150
- #### Examples
151
- Create a draft pull request for the current branch:
152
- ```shell
153
- harmony pr --draft
154
- ```
151
+ ## `config {property} [value]`
152
+ Read the given configuration property. `harmony config <property> <value>` will set the configuration property.
155
153
 
156
- Create a PR for the current branch and add the `urgent` label:
157
- ```shell
158
- harmony pr #urgent
159
- ```
160
- ### Quick
161
- Running `harmony quick` will help you create a new GitHub issue and a branch to
162
- work on that issue all in one go. The branch name will be structured such that
163
- if you have GitHub branch parsing on then the PR you create for the branch later
164
- on will refer to the issue created now.
165
-
166
- ### Label
167
- Running `harmony label {<label>} [...]` will help you create a PR if one does not exist yet and then it will apply the given labels to the PR. This is essentially an alias for the `harmony pr` command but without support for creating draft PRs.
154
+ Not all configuration properties can be read/set with this command.
168
155
 
169
- Note that labels are _not_ prefixed with '#' for this command. There is no need to differentiate labels from other kinds of arguments to `harmony label`.
156
+ ### Properties
170
157
 
171
- ### Request
172
- Running `harmony request {<team> | +<user>} [#<label>] [...]` will help you create a PR if one does not exist yet and then it will request reviews from teams and/or users.
158
+ `requestTeams` (`true`/`false`)
159
+ : When picking a reviewer from a team, request the team as a reviewer as well.
173
160
 
174
- There is also a `harmony rq` alias for `harmony request`.
161
+ `requestUsers` (`true`/`false`)
162
+ : When requesting a team as a reviewer, pick a user to review as well.
175
163
 
176
- If `harmony config requestUsers` is `True` (defualt) then harmony will pick someone to review the PR (from one of the listed teams). If `harmony config requestTeams` is `True` (default) then harmony will request reviews from the teams you listed. If `harmony config commentOnRequest` is `True` then harmony will comment on the Pull Request indicating that teams & users were "harmoniously requested" -- this comment will @mention requested users so it may be useful or annoying depending on the requested user's GitHub notification settings.
177
-
178
- You can also require that specific additional users (on top of the one Harmony will pick for you) are requested to review the PR. You do this by specifying those users' logins prefixed with '+' as arguments to Harmony. This will request review from those specific additional users regardless of the `requestUsers` setting; that setting controls whether Harmony picks users from each Team you specify to review PRs.
164
+ `commentOnRequest` (`none`/`name`/`at-mention`)
165
+ : When requesting a reviewer chosen by Harmony, comment on the pull request or not.
179
166
 
180
- You can optionally apply any number of labels to the PR at the same time as requesting reviewers by prefixing the labels with '#'.
167
+ `branchParsing` (`none`/`jira`/`github`)
168
+ : Optionally extract a Jira ticket slug or GitHub issue number from the branch name and prepend it to the PR title or body to link the PR and ticket/issue.
181
169
 
182
- #### Deferring to GitHub
183
- If your team has GitHub set up to auto-request reviews from individuals when a team is requested for review, you probably want to tell harmony not to also pick someone using its heuristics. You can run the following `config` commands to tell harmony to request a team but not also pick an individual from that team:
184
- ```shell
185
- harmony config requestTeams true
186
- harmony config requestUsers false
187
- ```
188
- This does not prevent you from requesting specific individuals with the `+<user>` syntax described above.
170
+ `defaultRemote` (optional string)
171
+ : When pushing new branches, what remote destination should be used.
189
172
 
190
- #### Examples
191
- Request review from the most available reviewer from the "developers" GitHub Team:
192
- ```shell
193
- harmony request developers
194
- ```
173
+ `mainBranch` (optional string)
174
+ : When creating a PR, this is the default base branch.
195
175
 
196
- Request review from the most available reviewer from either the "frontend" or "backend" GitHub Team:
197
- ```shell
198
- harmony request frontend backend
199
- ```
176
+ `theme` (`dark`/`light`)
177
+ : Use colors suited better for either a dark or light Terminal background.
200
178
 
201
- Request review from the most available reviewer from the "web" team and additionally request review from the users with logins "carl001" and "emmaham":
202
- ```shell
203
- harmony request web +carl001 +emmaham
204
- ```
179
+ `githubPAT` (optional string)
180
+ : If the `$GITHUB_PAT` and `$GH_TOKEN` environment variables are not set, this Personal Access Token is used to authenticate with GitHub.
205
181
 
206
- ### Contribute
207
- Running `harmony contribute` will print the URI of the oldest non-draft PR waiting for your review. If you are not requested for review on any PRs, Harmony will suggest a PR that your review is not requested on.
182
+ ## `contribute [options]`
183
+ Print the URI of the oldest non-draft PR waiting for your review. If you are not requested for review on any PRs, Harmony will suggest a PR that your review is not requested on.
208
184
 
209
185
  You can skip PRs and retrieve the next-oldest one by passing a dash followed by the number to skip (e.g. `-2` to skip the two oldest waiting PRs).
210
186
 
@@ -216,7 +192,7 @@ Many operating systems have an `open` command (though the name "open" is not ubi
216
192
 
217
193
  You can also run `harmony contribute --list` if you want to list out a few PRs to consider reviewing them instead of choosing just one PR to look into and printing that PRs URI.
218
194
 
219
- #### Examples
195
+ ### Examples
220
196
  Retrieve a URI for the oldest unreviewed and open PR (prioritizing PRs for which you are a requested reviewer):
221
197
  ```shell
222
198
  harmony contribute
@@ -242,31 +218,106 @@ Permanently ignore a PR by its number:
242
218
  harmony contribute --ignore 1234
243
219
  ```
244
220
 
245
- ### Who Am I
246
- Running `harmony whoami` will print information about the currently configured and authenticated user.
221
+ ## `graph [--completed] {team-slug}`
222
+ Graph the relative review workload of each of the members of the given GitHub Team.
247
223
 
248
- ### Reflect
249
- Running `harmony reflect` will show a summary of your review requests and authored pull requests.
224
+ You can optionally graph completed PR reviews with the `--completed` flag as well, though these are not considered for Harmony's weighting algorithm for review workload.
250
225
 
251
- ![Reflect Screenshot](./docs/images/reflect.png)
226
+ ## `health`
227
+ Graph all open PRs grouped by the month when each was created.
228
+
229
+ The idea is that a healthy repository does not have many old PRs still open because those PRs represent effort spent by developers that hasn't yet paid off.
230
+
231
+ ![Health Screenshot](./docs/images/health.png)
232
+
233
+ ## `help [subcommand]`
234
+ Print help.
235
+
236
+ ## `label {label} [...]`
237
+ Helps you create a PR if one does not exist yet and then it will apply the given labels to the PR. This is essentially an alias for the `harmony pr` command but without support for creating draft PRs.
238
+
239
+ Note that labels are _not_ prefixed with '#' for this command. There is no need to differentiate labels from other kinds of arguments to `harmony label`.
252
240
 
253
- ### List
241
+ ## `list [team-slug]`
254
242
  Running `harmony list` will list all the teams for the configured GitHub organization.
255
243
 
256
244
  Running `harmony list <team>` will list the members of the given GitHub Team.
257
245
 
258
- ### Graph
259
- Running `harmony graph <team>` will graph the relative review workload of each of the members of the given GitHub Team.
246
+ ## `pr [--draft] [#label, ...]`
247
+ With a branch checked out will reach out to GitHub to determine if there is an open PR for that branch. If there is a PR, Harmony will print a URI that can be used to view the PR. If there is not a PR, Harmony will help you create one. New and existing PRs can be marked as drafts by specifying the `--draft` flag with the `pr` command.
260
248
 
261
- You can optionally graph completed PR reviews with the `--completed` flag as well, though these are not considered for Harmony's weighting algorithm for review workload.
249
+ If you need to create a PR still, you will be prompted for a branch to open the PR against (merge into, eventually), a title for the PR, and a description for the PR. If you have an `EDITOR` environment variable set, Harmony will use that editor to get the PR description from you. If you have a PR template at `.github/PULL_REQUEST_TEMPLATE.md`, Harmony will also preload that into your editor. If you do not have an `EDITOR` environment variable set, you will still be able to enter a description from the command line but PR templates are only supported when an `EDITOR` is specified.
262
250
 
263
- ### Health
264
- Running `harmony health` will graph all open PRs grouped by the month when each was created.
251
+ You can also specify any number of labels to apply by prefixing them with '#'. For example, `harmony pr #backport #bugfix` would create a PR and apply the `backport` and `bugfix` labels.
265
252
 
266
- The idea is that a healthy repository does not have many old PRs still open because those PRs represent effort spent by developers that hasn't yet paid off.
253
+ If you are using harmony from a script or some other environment without TTY support, harmony will print a GitHub URL that can be used to create the PR. This mode of operation will ignore the `--draft` and `#label` options.
254
+
255
+ Many operating systems have an `open` command (though the name "open" is not ubiquitous); this means you can run something like `open $(harmony pr)` to open a web browser to an existing PR for the current branch.
256
+
257
+ ### Examples
258
+ Create a draft pull request for the current branch:
259
+ ```shell
260
+ harmony pr --draft
261
+ ```
262
+
263
+ Create a PR for the current branch and add the `urgent` label:
264
+ ```shell
265
+ harmony pr #urgent
266
+ ```
267
+
268
+ ## `quick`
269
+ Helps you create a new GitHub issue and a branch to
270
+ work on that issue all in one go. The branch name will be structured such that
271
+ if you have GitHub branch parsing on then the PR you create for the branch later
272
+ on will refer to the issue created now.
273
+
274
+ ## `reflect`
275
+ Show a summary of your review requests and authored pull requests.
276
+
277
+ ![Reflect Screenshot](./docs/images/reflect.png)
278
+
279
+ ## `request {team-slug | +user-login} [options]`
280
+ Helps you create a PR if one does not exist yet and then it will request reviews from teams and/or users.
281
+
282
+ There is also a `harmony rq` alias for `harmony request`.
283
+
284
+ If `harmony config requestUsers` is `True` (defualt) then harmony will pick someone to review the PR (from one of the listed teams). If `harmony config requestTeams` is `True` (default) then harmony will request reviews from the teams you listed. If `harmony config commentOnRequest` is `True` then harmony will comment on the Pull Request indicating that teams & users were "harmoniously requested" -- this comment will @mention requested users so it may be useful or annoying depending on the requested user's GitHub notification settings.
285
+
286
+ You can also require that specific additional users (on top of the one Harmony will pick for you) are requested to review the PR. You do this by specifying those users' logins prefixed with '+' as arguments to Harmony. This will request review from those specific additional users regardless of the `requestUsers` setting; that setting controls whether Harmony picks users from each Team you specify to review PRs.
287
+
288
+ You can optionally apply any number of labels to the PR at the same time as requesting reviewers by prefixing the labels with '#'.
289
+
290
+ ### Deferring to GitHub
291
+ If your team has GitHub set up to auto-request reviews from individuals when a team is requested for review, you probably want to tell harmony not to also pick someone using its heuristics. You can run the following `config` commands to tell harmony to request a team but not also pick an individual from that team:
292
+ ```shell
293
+ harmony config requestTeams true
294
+ harmony config requestUsers false
295
+ ```
296
+ This does not prevent you from requesting specific individuals with the `+<user>` syntax described above.
297
+
298
+ ### Examples
299
+ Request review from the most available reviewer from the "developers" GitHub Team:
300
+ ```shell
301
+ harmony request developers
302
+ ```
303
+
304
+ Request review from the most available reviewer from either the "frontend" or "backend" GitHub Team:
305
+ ```shell
306
+ harmony request frontend backend
307
+ ```
308
+
309
+ Request review from the most available reviewer from the "web" team and additionally request review from the users with logins "carl001" and "emmaham":
310
+ ```shell
311
+ harmony request web +carl001 +emmaham
312
+ ```
313
+
314
+ ## `sync`
315
+ Sync the locally configured team slugs and user logins that are used by auto-completion for Harmony. This sync is also performed automatically the first time you run Harmony after more than a day without the configuration being synced.
316
+
317
+ ## `version`
318
+ Print Harmony's version.
267
319
 
268
- ![Health Screenshot](./docs/images/health.png)
269
320
 
270
- ### Sync
271
- Running `harmony sync` will sync the locally configured team slugs and user logins that are used by auto-completion for Harmony. This sync is also performed automatically the first time you run Harmony after more than a day without the configuration being synced.
321
+ ## `whoami`
322
+ Print information about the currently configured and authenticated user.
272
323