Skip to content

Commit

Permalink
Fix imports output (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
aknysh authored Apr 23, 2021
1 parent 7ccb918 commit 83d40f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- main
- master
- production

jobs:
publish:
Expand All @@ -14,7 +16,7 @@ jobs:
id: get-merged-pull-request
with:
github_token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
# Drafts your next Release notes as Pull Requests are merged into "master"
# Drafts your next Release notes as Pull Requests are merged into "main"
- uses: release-drafter/release-drafter@v5
if: "!contains(steps.get-merged-pull-request.outputs.labels, 'no-release')"
with:
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ locals {

config = [
for stack in local.decoded : {
imports = stack.imports,
components = {
helmfile = stack.components.helmfile,
imports = stack.imports,
terraform = {
for k, v in stack.components.terraform : k => {
backend = v.backend
Expand Down

0 comments on commit 83d40f8

Please sign in to comment.