@mattpolzin/harmony 5.7.0 → 5.8.0

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 +11 -6
  2. package/harmony +706 -629
  3. package/man/harmony.1 +21 -7
  4. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- % harmony(1) Version 5.7.0 | Harmony User's Guide
1
+ % harmony(1) Version 5.8.0 | Harmony User's Guide
2
2
 
3
3
  # NAME
4
4
  Harmony - Harmonize with coworkers around GitHub reviewing
@@ -6,14 +6,14 @@ Harmony - Harmonize with coworkers around GitHub reviewing
6
6
  # SYNOPSIS
7
7
  `harmony branch` \
8
8
  `harmony config {property} [value]` \
9
- `harmony contribute [options] {uri | pr-number}` \
9
+ `harmony contribute [options]` \
10
10
  `harmony graph [options] {team-slug}` \
11
11
  `harmony health` \
12
12
  `harmony help [subcommand]` \
13
13
  `harmony label {label} [...]` \
14
14
  `harmony list [team-slug]` \
15
15
  `harmony pr [options]` \
16
- `harmony quick` \
16
+ `harmony quick [options]` \
17
17
  `harmony reflect` \
18
18
  `harmony request {team-slug | +user-login} [options]` \
19
19
  `harmony rq {team-slug | +user-login} [options]` \
@@ -200,10 +200,10 @@ Not all configuration properties can be read/set with this command.
200
200
  ### Properties
201
201
 
202
202
  `requestTeams` (`true`/`false`)
203
- : When picking a reviewer from a team, request the team as a reviewer as well.
203
+ : When picking a team to review, request review from the whole team, not just one user on the team. If you have GitHub configured to pick a member of a team to review when the team is requested, you probably want to set this to `true` so harmony tells GitHub the team from which GitHub should then pick an individual.
204
204
 
205
205
  `requestUsers` (`true`/`false`)
206
- : When requesting a team as a reviewer, pick a user to review as well.
206
+ : When requesting a team to review, pick a user from the team to review as well. If you have GitHub configured to pick a member of a team to review when the team is requested, you probably want to set this to `false` so harmony does not also pick a user.
207
207
 
208
208
  `commentOnRequest` (`none`/`name`/`at-mention`)
209
209
  : When requesting a reviewer chosen by Harmony, comment on the pull request or not.
@@ -365,7 +365,7 @@ Create a pull request that will merge into the hypothetical pre-existing
365
365
  harmony pr --into release/2_0
366
366
  ```
367
367
 
368
- ## `quick [--bugfix]`
368
+ ## `quick [--bugfix] [issue-title] [...]`
369
369
  Helps you create a new GitHub issue and a branch to work on that issue all in
370
370
  one go. The branch name will be structured such that if you have GitHub branch
371
371
  parsing on then the PR you create for the branch later on will refer to the
@@ -374,6 +374,11 @@ issue created now.
374
374
  By default the branch created will be prefixed with `feature` but if you specify
375
375
  the `--bugfix` flag then the branch's prefix will be `bugfix`.
376
376
 
377
+ Any additional arguments other than `--bugfix` will be used as the issue's
378
+ title. If you don't specify the title as additional arguments, you will be
379
+ prompted for one interactively. You will also be prompted for an issue
380
+ description.
381
+
377
382
  ## `reflect`
378
383
  Show a summary of your review requests and authored pull requests.
379
384