Skip to content

Commit b48f861

Browse files
Merge pull request #115 from mineiros-io/soerenmartius/fix-delete_branch_on_merge-docs
Set default value of delete_branch_on_merge to true
2 parents 3bb3764 + 9988cf2 commit b48f861

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Set correct default value for `delete_branch_on_merge` in docs
13+
1014
## [0.15.0]
1115

1216
### Fixed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ See [variables.tf] and [examples/] for details and use-cases.
208208

209209
Set to `false` to disable the automatic deletion of head branches after pull requests are merged.
210210

211-
Default is `false`.
211+
Default is `true`.
212212

213213
- [**`homepage_url`**](#var-homepage_url): *(Optional `string`)*<a name="var-homepage_url"></a>
214214

README.tfdoc.hcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ section {
242242

243243
variable "delete_branch_on_merge" {
244244
type = bool
245-
default = false
245+
default = true
246246
description = <<-END
247247
Set to `false` to disable the automatic deletion of head branches after pull requests are merged.
248248
END

0 commit comments

Comments
 (0)