From 8dafb1f33f6ae8a6cb7a696089896f42a00d82cf Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Wed, 3 Apr 2024 22:51:49 +0200 Subject: [PATCH] Fix feature branch workflow (#58) * Fix feature branch workflow * Update main.tf --- .github/workflows/feature-branch.yml | 2 +- main.tf | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/feature-branch.yml b/.github/workflows/feature-branch.yml index ed96fb8..0a7759b 100644 --- a/.github/workflows/feature-branch.yml +++ b/.github/workflows/feature-branch.yml @@ -5,7 +5,7 @@ on: branches: - main - release/v* - types: [opened, synchronize, reopened, labeled, unlabeled] + types: [opened, synchronize, reopened] permissions: pull-requests: write diff --git a/main.tf b/main.tf index 8e1225e..25f6fd9 100644 --- a/main.tf +++ b/main.tf @@ -8,6 +8,8 @@ resource "random_integer" "example" { } } + + locals { example = format("%v %v", var.example, join("", random_integer.example[*].result)) }