Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ mergify --token your_token_here <command>
|---|---|---|
| `mergify stack` | Create and manage stacked pull requests | [Stacks](/stacks) |
| `mergify freeze` | Schedule and manage merge freezes | [Scheduling Freezes](/merge-protections/freeze) |
| `mergify queue` | Monitor merge queue status | [Monitoring](/merge-queue/monitoring) |
| `mergify queue` | Monitor and control merge queue | [Monitoring](/merge-queue/monitoring) |
| `mergify config` | Validate and simulate config | [Config](/configuration/file-format#validating-with-the-cli) |
| `mergify ci` | Upload and analyze CI results | [CI Insights](/ci-insights) |
14 changes: 14 additions & 0 deletions src/content/docs/merge-queue/pause.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@ the queue.

<Image alt="Pause button is in the top right corner in Mergify's dashboard" src={screenshotButtonPause} />

### Using the CLI

Pause the queue from the terminal with an optional reason:

```bash
mergify queue pause --reason "deploying hotfix"
```

Resume when ready:

```bash
mergify queue unpause
```

### Using the API

You can also pause the merge queue programmatically using the [Mergify
Expand Down
Loading