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:
5050gh combine owner/repo --dependabot
5151```
5252
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+
5361### With Passing CI
5462
5563Combine 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 {
115115 gh combine owner/repo --add-assignees octocat,hubot # Assign users to the new PR
116116
117117 # Additional options
118+ gh combine owner/repo --dry-run # Simulate the actions without making any changes
118119 gh combine owner/repo --autoclose # Close source PRs when combined PR is merged
119120 gh combine owner/repo --base-branch main # Use a different base branch for the combined PR
120121 gh combine owner/repo --no-color # Disable color output
You can’t perform that action at this time.
0 commit comments