Skip to content

Commit 42dac66

Browse files
authored
Merge pull request #33 from FilOzone/master-upgrade
upgrade@20960640230
2 parents bae4692 + c5109c9 commit 42dac66

File tree

3 files changed

+2
-64
lines changed

3 files changed

+2
-64
lines changed

.github/workflows/upgrade_reusable.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7373
- how sync handles pending invitations (now it does not ignore them)
7474
- removed references to other resources from for_each expressions
7575
- downgraded terraform to 1.2.9 to fix an import bug affecting for_each expressions
76+
- refactored pages build_type assignment to trim whitespace

terraform/resources.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ resource "github_repository" "this" {
7474
dynamic "pages" {
7575
for_each = try(each.value.pages, [])
7676
content {
77-
build_type = try(pages.value["build_type"], null)
77+
build_type = trimspace(try(pages.value["build_type"], "")) != "" ? pages.value["build_type"] : null
7878
cname = try(pages.value["cname"], null)
7979
dynamic "source" {
8080
for_each = pages.value["source"]

0 commit comments

Comments
 (0)