This repository has been archived by the owner on May 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
.bulldozer.yml
79 lines (65 loc) · 3.26 KB
/
.bulldozer.yml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
version: 1
merge:
whitelist:
# Pull requests with any of these labels (case-insensitive) are added to
# the whitelist.
labels: ["automerge", "PR: reviewed-approved"]
# Pull requests where the body or any comment contains any of these
# substrings are added to the whitelist.
#comment_substrings: ["==MERGE_WHEN_READY=="]
# Pull requests where any comment matches one of these exact strings are
# added to the whitelist.
#comments: ["Please merge this pull request!"]
# Pull requests where the body contains any of these substrings are added
# to the whitelist.
#pr_body_substrings: ["==MERGE_WHEN_READY=="]
# Pull requests targeting any of these branches are added to the whitelist.
#branches: ["develop"]
# Takes the same keys as the "whitelist" section.
blacklist:
labels: ["invalid", "PR: draft", "PR: reviewed-changes-requested", "PR: unreviewed", "wip"]
# "method" defines the merge method. The available options are "merge",
# "rebase", and "squash".
method: squash
# Allows the merge method that is used when auto-merging a PR to be different based on the
# target branch. The keys of the hash are the target branch name, and the values are the merge method that
# will be used for PRs targeting that branch. The valid values are the same as for the "method" key.
# Note: If the target branch does not match any of the specified keys, the "method" key is used instead.
#branch_method:
#develop: squash
#master: merge
options:
squash:
# "title" defines how the title of the commit message is created when
# generating a squash commit. The options are "pull_request_title",
# "first_commit_title", and "github_default_title". The default is
# "pull_request_title".
title: "pull_request_title"
# "body" defines how the body of the commit message is created when
# generating a squash commit. The options are "pull_request_body",
# "summarize_commits", and "empty_body". The default is "empty_body".
body: "summarize_commits"
# If "body" is "pull_request_body", then the commit message will be the
# part of the pull request body surrounded by "message_delimiter"
# strings. This is disabled (empty string) by default.
#message_delimiter: ==COMMIT_MSG==
# "required_statuses" is a list of additional status contexts that must pass
# before bulldozer can merge a pull request. This is useful if you want to
# require extra testing for automated merges, but not for manual merges.
required_statuses:
- "WIP"
- "continuous-integration/travis-ci/push"
# If true, bulldozer will delete branches after their pull requests merge.
delete_after_merge: false
# "update" defines how and when to update pull request branches. Unlike with
# merges, if this section is missing, bulldozer will not update any pull requests.
#update:
# # "whitelist" defines the set of pull requests that should be updated by
# # bulldozer. It accepts the same keys as the whitelist in the "merge" block.
# whitelist:
# labels: ["WIP", "Update Me"]
#
# # "blacklist" defines the set of pull requests that should not be updated by
# # bulldozer. It accepts the same keys as the blacklist in the "merge" block.
# blacklist:
# labels: ["Do Not Update"]