Add vercel actions to the list of ignored checks when the `automerge` label is added to an approved PR.
22 lines
556 B
TOML
22 lines
556 B
TOML
#.kodiak.toml
|
||
version = 1
|
||
|
||
[merge]
|
||
automerge_label = "automerge"
|
||
require_automerge_label = true
|
||
blocking_labels = ["on hold", "wip", "blocked"]
|
||
method = "squash"
|
||
delete_branch_on_merge = true
|
||
optimistic_updates = false
|
||
prioritize_ready_to_merge = true
|
||
notify_on_conflict = true
|
||
dont_wait_on_status_checks = ["Vercel – api-reference", "Vercel – docs-ui", "Vercel – medusa-docs"]
|
||
|
||
[merge.message]
|
||
title = "pull_request_title"
|
||
body = "pull_request_body"
|
||
include_coauthors= true
|
||
include_pr_number = true
|
||
body_type = "markdown"
|
||
strip_html_comments = true
|