@mattpolzin/harmony 5.8.0 → 6.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 +11 -3
- package/harmony +2557 -1975
- package/man/harmony.1 +9 -3
- package/package.json +2 -3
package/man/harmony.1
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" Automatically generated by Pandoc 3.7.0.2
|
|
2
2
|
.\"
|
|
3
|
-
.TH "harmony" "1" "" "Version
|
|
3
|
+
.TH "harmony" "1" "" "Version 6.0.0" "Harmony User\(cqs Guide"
|
|
4
4
|
.SH NAME
|
|
5
5
|
Harmony \- Harmonize with coworkers around GitHub reviewing
|
|
6
6
|
.SH SYNOPSIS
|
|
@@ -92,6 +92,10 @@ Each release page also indicates the version of Idris 2 that particular
|
|
|
92
92
|
release will build against.
|
|
93
93
|
.PP
|
|
94
94
|
Alternatively, you can build Harmony with Docker (see Docker Build).
|
|
95
|
+
.SS Testing
|
|
96
|
+
Tests can be run with \f[CR]make test\f[R].
|
|
97
|
+
You\(cqll need a few common tools in your \f[CR]PATH\f[R] to run all the
|
|
98
|
+
tests: \- \f[CR]realpath\f[R] \- \f[CR]sed\f[R] \- \f[CR]xargs\f[R]
|
|
95
99
|
.SS Installation
|
|
96
100
|
For any installation, you need to have a GitHub \c
|
|
97
101
|
.UR https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token
|
|
@@ -388,14 +392,16 @@ configured GitHub organization.
|
|
|
388
392
|
.PP
|
|
389
393
|
Running \f[CR]harmony list <team>\f[R] will list the members of the
|
|
390
394
|
given GitHub Team.
|
|
391
|
-
.SS \f[CR]pr [\-\-draft] [\-i/\-\-into {<branch\-name>}] [#label, ...]\f[R]
|
|
395
|
+
.SS \f[CR]pr [\-\-draft | \-\-ready] [\-i/\-\-into {<branch\-name>}] [#label, ...]\f[R]
|
|
392
396
|
With a branch checked out will reach out to GitHub to determine if there
|
|
393
397
|
is an open PR for that branch.
|
|
394
398
|
If there is a PR, Harmony will print a URI that can be used to view the
|
|
395
399
|
PR.
|
|
396
400
|
If there is not a PR, Harmony will help you create one.
|
|
397
401
|
New and existing PRs can be marked as drafts by specifying the
|
|
398
|
-
\f[CR]\-\-draft\f[R] flag with the \f[CR]pr\f[R] command
|
|
402
|
+
\f[CR]\-\-draft\f[R] flag with the \f[CR]pr\f[R] command or they can be
|
|
403
|
+
marked as ready for review with the \f[CR]\-\-ready\f[R] flag.
|
|
404
|
+
The default behavior for new PRs is to mark them ready.
|
|
399
405
|
.PP
|
|
400
406
|
If you need to create a PR still, you will be prompted for a branch to
|
|
401
407
|
open the PR against (merge into, eventually), a title for the PR, and a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mattpolzin/harmony",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18.0.0"
|
|
6
6
|
},
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"author": "Mathew Polzin",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"octokit": "^3.1"
|
|
32
|
-
"simple-git": "^3.15"
|
|
31
|
+
"octokit": "^3.1"
|
|
33
32
|
}
|
|
34
33
|
}
|