@mattpolzin/harmony 5.4.1 → 5.5.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 (3) hide show
  1. package/README.md +6 -1
  2. package/harmony +1770 -1778
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -112,7 +112,7 @@ Would you like harmony to request team reviews in addition to individuals when i
112
112
  Creating config...
113
113
  ```
114
114
 
115
- Once configured, Harmony supports the following commands: `config`, `branch`, `pr`, `label`, `request` (also aliased to `rq`), `contribute`, `whoami`, `reflect`, `list`, `graph`, `health`, and `sync`.
115
+ Once configured, Harmony supports the following commands: `config`, `branch`, `pr`, `quick`, `label`, `request` (also aliased to `rq`), `contribute`, `whoami`, `reflect`, `list`, `graph`, `health`, and `sync`.
116
116
 
117
117
  **Note on color output:**
118
118
  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`).
@@ -157,6 +157,11 @@ Create a PR for the current branch and add the `urgent` label:
157
157
  ```shell
158
158
  harmony pr #urgent
159
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.
160
165
 
161
166
  ### Label
162
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.