Skip to content

Commit 175155f

Browse files
committed
chore(ci): add configuration for Kodiak
1 parent 9bf7a10 commit 175155f

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.kodiak.toml

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

0 commit comments

Comments
 (0)