Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hypesystem committed Mar 11, 2024
1 parent b0e5a84 commit 331d072
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/runbooks/deploy-a-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ or a fork to a single site.
If you want to deploy to more than one site, simply repeat the procedure for each
site.

For sites with `plan: webmaster`, the branch `moduletest` for the test environment for
custom Drupal modules will also be synced appropriately.
For sites with `plan: webmaster`, the branch `moduletest` for the test
environment for custom Drupal modules will also be synced appropriately.

## Prerequisites

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "github_repository" "site" {
}

resource "github_branch" "moduletest_branch" {
for_each = { for key, val in local.sites: key => val if try(val.plan, "standard") == "webmaster" }
for_each = { for key, val in local.sites : key => val if try(val.plan, "standard") == "webmaster" }

branch = "moduletest"
repository = github_repository.site[each.key].name
Expand Down

0 comments on commit 331d072

Please sign in to comment.