@mattpolzin/harmony 4.4.0 → 5.0.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.
- package/README.md +3 -1
- package/harmony +909 -752
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,7 +124,7 @@ Not all configuration properties can be read/set with this command.
|
|
|
124
124
|
#### Properties
|
|
125
125
|
- `requestTeams` (`true`/`false`) -- When picking a reviewer from a team, request the team as a reviewer as well.
|
|
126
126
|
- `requestUsers` (`true`/`false`) -- When requesting a team as a reviewer, pick a user to review as well.
|
|
127
|
-
- `commentOnRequest` (`
|
|
127
|
+
- `commentOnRequest` (`none`/`name`/`at-mention`) -- When requesting a reviewer chosen by Harmony, comment on the pull request or not.
|
|
128
128
|
- `defaultRemote` (optional string) -- When pushing new branches, what remote destination should be used.
|
|
129
129
|
- `mainBranch` (optional string) -- When creating a PR, this is the default base branch.
|
|
130
130
|
- `theme` (`dark`/`light`) -- Use colors suited better for either a dark or light Terminal background.
|
|
@@ -195,6 +195,8 @@ You can simultaneously get the URI for a PR to review and checkout the branch ne
|
|
|
195
195
|
|
|
196
196
|
Many operating systems have an `open` command (though the name "open" is not ubiquitous); this means you can run something like `open $(harmony contribute)` to open a web browser to the PR that Harmony is suggesting.
|
|
197
197
|
|
|
198
|
+
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.
|
|
199
|
+
|
|
198
200
|
#### Examples
|
|
199
201
|
Retrieve a URI for the oldest unreviewed and open PR (prioritizing PRs for which you are a requested reviewer):
|
|
200
202
|
```shell
|