-
Notifications
You must be signed in to change notification settings - Fork 35
/
.kodiak.toml
24 lines (21 loc) · 1.1 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
# Configuration for Kodiak's auto-merge tool
# see full options: https://kodiakhq.com/docs/config-reference
version = 1
[approve]
# note: remove the "[bot]" suffix from GitHub Bot usernames.
# Instead of "dependabot[bot]" use "dependabot".
auto_approve_usernames = ["arunkumar9t2"]
[merge]
# If you're using the "Require signed commits" GitHub Branch Protection setting
# to require commit signatures, "merge" or "squash" are the only compatible options. "rebase" will cause Kodiak to raise a configuration error.
method = "squash" # default: first valid merge method in list "merge", "squash", "rebase", options: "merge", "squash", "rebase"
[merge.message]
title = "pull_request_title" # default: "github_default"
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