Skip to content

Commit ff48339

Browse files
committed
fix(configure) : updated trigger for testing
1 parent 0489026 commit ff48339

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/deploy-lgtm-gke.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ on:
2424
push:
2525
branches:
2626
- main
27+
- feature/integrate-keycloak-sso
2728
paths:
2829
- 'lgtm-stack/terraform/**'
2930
- '.github/workflows/deploy-lgtm-gke.yaml'
@@ -201,13 +202,13 @@ jobs:
201202
202203
# Job 2: Terraform Apply
203204
# Execution job that applies the previously reviewed plan.
204-
# This job only runs on merges to main or manual approval.
205+
# This job only runs on merges to main, target branch, or manual approval.
205206
terraform-apply:
206207
name: Terraform Apply
207208
runs-on: ubuntu-latest
208209
needs: [terraform-plan]
209210
if: |
210-
(github.event_name == 'push' && github.ref == 'refs/heads/main') ||
211+
(github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/integrate-keycloak-sso')) ||
211212
(github.event_name == 'workflow_dispatch' && github.event.inputs.terraform_action == 'apply')
212213
environment:
213214
name: production

0 commit comments

Comments
 (0)