-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kodiak.toml
38 lines (28 loc) · 1.07 KB
/
.kodiak.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version = 1
[approve]
# if a PR is ready, merge it, don't place it in the merge queue.
prioritize_ready_to_merge = true # default: false
[merge]
method = "squash"
automerge_label = "🚀 automerge"
# If a PR's title matches this regex, Kodiak will not merge the PR. This is
# useful to prevent merging work-in-progress PRs.
blocking_title_regex = "^WIP:.*"
[merge.automerge_dependencies]
# only auto merge "minor" and "patch" version upgrades.
# do not automerge "major" version upgrades.
versions = ["minor", "patch"]
# automerge by upgrade version for pull requests authored by dependabot or renovate.
usernames = ["dependabot", "renovate"]
[merge.message]
# use title of PR for merge commit.
title = "pull_request_title" # default: "github_default"
# use body of PR for merge commit.
body = "pull_request_body" # default: "github_default"
include_coauthors = true
[update]
autoupdate_label = "♻️ autoupdate"
# immediately update a pull request's branch when outdated.
always = true # default: false
# do not update pull requests of these usernames.
ignored_usernames = ["renovate"]