@mattpolzin/harmony 6.3.0 → 6.4.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 +11 -5
- package/harmony +1496 -939
- package/man/harmony.1 +10 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -227,6 +227,9 @@ Not all configuration properties can be read/set with this command.
|
|
|
227
227
|
`branchParsing` (`none`/`jira`/`github`)
|
|
228
228
|
: 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.
|
|
229
229
|
|
|
230
|
+
`addPrTreeDescription` (`true`/`false`)
|
|
231
|
+
: Determines whether to add a tree of PRs to the description for any PR that is into a branch other than the `mainBranch` configured.
|
|
232
|
+
|
|
230
233
|
`defaultRemote` (optional string)
|
|
231
234
|
: When pushing new branches, what remote destination should be used.
|
|
232
235
|
|
|
@@ -329,13 +332,16 @@ organization.
|
|
|
329
332
|
|
|
330
333
|
Running `harmony list <team>` will list the members of the given GitHub Team.
|
|
331
334
|
|
|
332
|
-
## `pr [--draft | --ready] [-i/--into {<branch-name>}] [#label, ...]`
|
|
335
|
+
## `pr [--draft | --ready] [-i/--into {<branch-name>}] [--print-tree] [#label, ...]`
|
|
333
336
|
With a branch checked out will reach out to GitHub to determine if there is an
|
|
334
337
|
open PR for that branch. If there is a PR, Harmony will print a URI that can be
|
|
335
|
-
used to view the PR. If there is not a PR, Harmony will help you create one.
|
|
336
|
-
|
|
337
|
-
the `
|
|
338
|
-
|
|
338
|
+
used to view the PR. If there is not a PR, Harmony will help you create one. The
|
|
339
|
+
`--print-tree` flag will print a tree of PRs for branches between the current
|
|
340
|
+
one and the `mainBranch` of the repository instead of just printing the URI for
|
|
341
|
+
the current branch's PR. New and existing PRs can be marked as drafts by
|
|
342
|
+
specifying the `--draft` flag with the `pr` command or they can be marked as
|
|
343
|
+
ready for review with the `--ready` flag. The default behavior for new PRs is to
|
|
344
|
+
mark them ready.
|
|
339
345
|
|
|
340
346
|
If you need to create a PR still, you will be prompted for a branch to open the
|
|
341
347
|
PR against (merge into, eventually), a title for the PR, and a description for
|