forked from Azure/iotedge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kodiak.toml
37 lines (27 loc) · 1.34 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
# https://kodiakhq.com/docs/config-reference contains all parameters explained
version = 1
[update]
# Update a PR whenever out of date with the base branch. The PR will be updated regardless of
# merge requirements (e.g. failing status checks, missing reviews, blacklist labels).
always = false # default: false
# When enabled, Kodiak will only update PRs that have an automerge label. When disabled, any PR.
require_automerge_label = true # default: true
[merge]
# Merge method for Kodiak to use.
method = "squash" # default: "merge"
# Once a PR is merged, delete the branch.
delete_branch_on_merge = true # default: false
# When enabled, Kodiak will only update PRs that have an automerge label.
# When disabled, automatically merge any PR that passes all required checks.
require_automerge_label = true # default: true
# By default, Kodiak will only act on PRs that have this label.
automerge_label = "ready-to-merge" # default: "automerge"
[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 pull request author as a coauthor of the merge commit using
include_pull_request_author = false # default: false
# remove html comments to auto remove PR templates.
strip_html_comments = true # default: false