-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kodiak.toml
62 lines (44 loc) · 2.08 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Configuration for Kodiak's auto-merge tool
# see full options: https://kodiakhq.com/docs/config-reference
version = 1 # this is required but 1 is currently the only option
[update]
always = false # default: false
require_automerge_label = true # default: true
automerge_label = "automerge" # default: automerge
# https://kodiakhq.com/docs/config-reference#updateautoupdate_label
autoupdate_label = "auto-update"
# if using `update.always`, add renovate to `update.ignore_usernames` to allow
# dependabot to update and close stale dependency upgrades.
# ignored_usernames = ["renovate", "rb-org-bot"]
[approve]
# note: remove the "[bot]" suffix from GitHub Bot usernames.
# Instead of "dependabot[bot]" use "dependabot".
auto_approve_usernames = ["RBusarow"]
#auto_approve_labele = ["approved"]
[merge]
# If a PR is ready, merge it, don't place it in the merge queue.
prioritize_ready_to_merge = true # default: false
priority_merge_label = "priority"
# will not do anything if a matching label is applied
blocking_labels = ["DO NOT MERGE"]
# Don't rewrite the commits when merging a PR via "rebase".
# https://kodiakhq.com/docs/config-reference#mergemethod
method = "rebase_fast_forward" # previously: "rebase"
# https://kodiakhq.com/docs/config-reference#mergenotify_on_conflict
notify_on_conflict = false
[merge.automerge_dependencies]
# auto merge all PRs opened by "renovate" that are "minor" or "patch" version upgrades. "major" version upgrades will be ignored.
versions = ["minor", "patch"]
#usernames = ["dependabot", "renovate", "rb-org-bot"]
[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"
# add the PR number to the merge commit title, like GitHub.
include_pr_number = true # default: true
# use the default markdown content of the PR for the merge commit.
body_type = "markdown" # default: "markdown"
# remove html comments to auto remove PR templates.
strip_html_comments = true # default: false
include_pull_request_url = true # default: false