Skip to content

Commit 8dafb1f

Browse files
authored
Fix feature branch workflow (#58)
* Fix feature branch workflow * Update main.tf
1 parent 1b868ee commit 8dafb1f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/feature-branch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- main
77
- release/v*
8-
types: [opened, synchronize, reopened, labeled, unlabeled]
8+
types: [opened, synchronize, reopened]
99

1010
permissions:
1111
pull-requests: write

main.tf

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ resource "random_integer" "example" {
88
}
99
}
1010

11+
12+
1113
locals {
1214
example = format("%v %v", var.example, join("", random_integer.example[*].result))
1315
}

0 commit comments

Comments
 (0)