You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+42-1Lines changed: 42 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,15 @@ Basic usage of the `combine` command to combine multiple dependent pull requests
39
39
gh combine owner/repo
40
40
```
41
41
42
-
> By default, this command runs with the `--branch-prefix dependabot/` flag set. All branches in the `owner/repo` repository that start with `dependabot/` will be combined.
42
+
> By default, this command will attempt to combine all open pull requests in the repository. You should use generally use some form of filtering to limit the number of pull requests that are combined. See the examples below for more information.
43
+
44
+
### Basic with Dependabot
45
+
46
+
Combine all open pull requests in a repository that are created by dependabot:
47
+
48
+
```bash
49
+
gh combine owner/repo --dependabot
50
+
```
43
51
44
52
### With Passing CI
45
53
@@ -101,6 +109,39 @@ You can also require a set of multiple labels
Logger.Warn("No filtering options specified. This will attempt to combine ALL open pull requests.")
53
+
Logger.Warn("No filtering options specified. This will attempt to combine ALL open pull requests. Use --label, --labels, --ignore-label, --ignore-labels, --branch-prefix, --branch-suffix, --branch-regex, --dependabot, etc to filter.")
0 commit comments