Skip to content

Commit

Permalink
chore(release): 4.3.4 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Feb 5, 2024
1 parent 7ddb357 commit 2cfdbae
Show file tree
Hide file tree
Showing 3 changed files with 112 additions and 39 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [4.3.4](https://github.com/mdonnalley/multiple-repo-manager/compare/v4.3.3...v4.3.4) (2024-02-05)

### Bug Fixes

- add debug logs ([7ddb357](https://github.com/mdonnalley/multiple-repo-manager/commit/7ddb357c0608948fa8877ed65f930cfeb735c27d))

## [4.3.3](https://github.com/mdonnalley/multiple-repo-manager/compare/v4.3.2...v4.3.3) (2024-02-05)

### Bug Fixes
Expand Down
143 changes: 105 additions & 38 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,10 @@ done-with-branch: |
* [`multi diff ORG`](#multi-diff-org)
* [`multi exec REPO`](#multi-exec-repo)
* [`multi list`](#multi-list)
* [`multi list org ORG`](#multi-list-org-org)
* [`multi open REPO`](#multi-open-repo)
* [`multi org issues ORG`](#multi-org-issues-org)
* [`multi org list ORGS`](#multi-org-list-orgs)
* [`multi org pulls ORG`](#multi-org-pulls-org)
* [`multi pulls`](#multi-pulls)
* [`multi refresh`](#multi-refresh)
* [`multi remove REPO`](#multi-remove-repo)
Expand Down Expand Up @@ -117,7 +119,7 @@ EXAMPLES
$ multi add https://github.com/my-github-org/my-repo
```
_See code: [src/commands/add.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/add.ts)_
_See code: [src/commands/add.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/add.ts)_
## `multi alias KEYVALUE`
Expand Down Expand Up @@ -145,7 +147,7 @@ EXAMPLES
$ multi alias myrepo=
```
_See code: [src/commands/alias.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/alias.ts)_
_See code: [src/commands/alias.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/alias.ts)_
## `multi cd REPO`
Expand All @@ -162,7 +164,7 @@ DESCRIPTION
cd into a repository.
```
_See code: [src/commands/cd.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/cd.ts)_
_See code: [src/commands/cd.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/cd.ts)_
## `multi diff ORG`
Expand All @@ -182,7 +184,7 @@ EXAMPLES
$ multi diff my-github-org
```
_See code: [src/commands/diff.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/diff.ts)_
_See code: [src/commands/diff.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/diff.ts)_
## `multi exec REPO`
Expand Down Expand Up @@ -215,7 +217,7 @@ EXAMPLES
$ multi exec . -- open https://app.circleci.com/pipelines/github/{repo.fullName}
```
_See code: [src/commands/exec.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/exec.ts)_
_See code: [src/commands/exec.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/exec.ts)_
## `multi list`
Expand All @@ -232,27 +234,7 @@ ALIASES
$ multi ls
```
_See code: [src/commands/list.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/list.ts)_
## `multi list org ORG`
Show all repositories in the org. Requires GH_TOKEN to be set in the environment.
```
USAGE
$ multi list org ORG

ARGUMENTS
ORG Github org

DESCRIPTION
Show all repositories in the org. Requires GH_TOKEN to be set in the environment.

EXAMPLES
$ multi list org my-github-org
```
_See code: [src/commands/list/org.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/list/org.ts)_
_See code: [src/commands/list.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/list.ts)_
## `multi open REPO`
Expand Down Expand Up @@ -290,24 +272,109 @@ EXAMPLES
$ multi open my-repo --file path/to/my/code.ts
```
_See code: [src/commands/open.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/open.ts)_
_See code: [src/commands/open.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/open.ts)_
## `multi org issues ORG`
List all issues in the org. Requires GH_TOKEN to be set in the environment.
```
USAGE
$ multi org issues ORG -s <value> [-b created|repo|author|updated]

ARGUMENTS
ORG Github org

FLAGS
-b, --sort-by=<option> [default: repo] Sort by
<options: created|repo|author|updated>
-s, --since=<value> (required) Only show issues updated after this date

DESCRIPTION
List all issues in the org. Requires GH_TOKEN to be set in the environment.

EXAMPLES
$ multi org issues my-github-org --since 1/1/24

$ multi org issues my-github-org --since friday
```
_See code: [src/commands/org/issues.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/org/issues.ts)_
## `multi org list ORGS`
Show all repositories in the org. Requires GH_TOKEN to be set in the environment.
```
USAGE
$ multi org list ORGS

ARGUMENTS
ORGS Github org

DESCRIPTION
Show all repositories in the org. Requires GH_TOKEN to be set in the environment.

ALIASES
$ multi list org

EXAMPLES
$ multi org list my-github-org
```
_See code: [src/commands/org/list.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/org/list.ts)_
## `multi org pulls ORG`
List all pull requests in the org. Requires GH_TOKEN to be set in the environment.
```
USAGE
$ multi org pulls ORG [-i | -d] [-b created|repo|author] [-s <value>]

ARGUMENTS
ORG Github org

FLAGS
-b, --sort-by=<option> [default: repo] Sort by
<options: created|repo|author>
-d, --only-dependabot Only show dependabot
-i, --[no-]ignore-dependabot Ignore dependabot
-s, --since=<value> Only show pull requests created after this date

DESCRIPTION
List all pull requests in the org. Requires GH_TOKEN to be set in the environment.

EXAMPLES
$ multi org pulls my-github-org

$ multi org pulls my-github-org --ignore-dependabot

$ multi org pulls my-github-org --only-dependabot

$ multi org pulls my-github-org --since 1/1/24

$ multi org pulls my-github-org --since friday
```
_See code: [src/commands/org/pulls.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/org/pulls.ts)_
## `multi pulls`
List all pull requests for added repositories. Requires GH_TOKEN to be set in the environment.
List all your pull requests for added repositories. Requires GH_TOKEN to be set in the environment.
```
USAGE
$ multi pulls

DESCRIPTION
List all pull requests for added repositories. Requires GH_TOKEN to be set in the environment.
List all your pull requests for added repositories. Requires GH_TOKEN to be set in the environment.

EXAMPLES
$ multi pulls
```
_See code: [src/commands/pulls.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/pulls.ts)_
_See code: [src/commands/pulls.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/pulls.ts)_
## `multi refresh`
Expand All @@ -324,7 +391,7 @@ DESCRIPTION
Refresh the list of repositories and corresponding metadata.
```
_See code: [src/commands/refresh.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/refresh.ts)_
_See code: [src/commands/refresh.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/refresh.ts)_
## `multi remove REPO`
Expand All @@ -344,7 +411,7 @@ ALIASES
$ multi rm
```
_See code: [src/commands/remove.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/remove.ts)_
_See code: [src/commands/remove.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/remove.ts)_
## `multi setup`
Expand All @@ -358,7 +425,7 @@ DESCRIPTION
Setup multi
```
_See code: [src/commands/setup.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/setup.ts)_
_See code: [src/commands/setup.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/setup.ts)_
## `multi task KEYVALUE`
Expand Down Expand Up @@ -397,7 +464,7 @@ EXAMPLES
$ multi task build --interactive
```
_See code: [src/commands/task.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/task.ts)_
_See code: [src/commands/task.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/task.ts)_
## `multi task get TASK`
Expand All @@ -414,7 +481,7 @@ DESCRIPTION
Return the value of a task.
```
_See code: [src/commands/task/get.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/task/get.ts)_
_See code: [src/commands/task/get.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/task/get.ts)_
## `multi view REPO`
Expand All @@ -434,7 +501,7 @@ ALIASES
$ multi v
```
_See code: [src/commands/view.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/view.ts)_
_See code: [src/commands/view.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/view.ts)_
## `multi where REPO`
Expand All @@ -454,5 +521,5 @@ DESCRIPTION
Print location of a repository.
```
_See code: [src/commands/where.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.3/src/commands/where.ts)_
_See code: [src/commands/where.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v4.3.4/src/commands/where.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "multiple-repo-manager",
"description": "CLI for managing multiple repositories",
"version": "4.3.3",
"version": "4.3.4",
"author": "Mike Donnalley",
"homepage": "https://github.com/mdonnalley/multiple-repo-manager",
"repository": "mdonnalley/multiple-repo-manager",
Expand Down

0 comments on commit 2cfdbae

Please sign in to comment.