File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,14 @@ Combine all open pull requests in a repository that are created by dependabot:
50
50
gh combine owner/repo --dependabot
51
51
```
52
52
53
+ ### In Dry Run Mode
54
+
55
+ You can run in dry run mode to see what would happen without actually creating a pull request or combining any pull requests:
56
+
57
+ ``` bash
58
+ gh combine owner/repo --dry-run
59
+ ```
60
+
53
61
### With Passing CI
54
62
55
63
Combine multiple pull requests together but only if their CI checks are passing:
Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ func NewRootCmd() *cobra.Command {
115
115
gh combine owner/repo --add-assignees octocat,hubot # Assign users to the new PR
116
116
117
117
# Additional options
118
+ gh combine owner/repo --dry-run # Simulate the actions without making any changes
118
119
gh combine owner/repo --autoclose # Close source PRs when combined PR is merged
119
120
gh combine owner/repo --base-branch main # Use a different base branch for the combined PR
120
121
gh combine owner/repo --no-color # Disable color output
You can’t perform that action at this time.
0 commit comments