Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions .github/workflows/ecs_terraform.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
name: "Terraform CICD - AWS ECS Instance"

# Automation for AWS ECS Instance using Terraform is PAUSED. Use/Create manual deployment for now.
# Github workflow triggers based on changes made in specific paths
on:
# pull_request:
# branches: [main]
# paths:
# - 'infra/ecs/**'
# - 'infra/envs/**'
# - '.github/workflows/ecs_terraform.yaml'
# push:
# branches: [main]
# paths:
# - 'infra/ecs/**'
# - 'infra/envs/**'
# - '.github/workflows/ecs_terraform.yaml'
workflow_dispatch: {} # Enable manual trigger for the workflow, but still need to configure the trigger in the GitHub UI. Manual deployment hasn't been implemented yet.
pull_request:
branches: [main]
paths:
- 'infra/ecs/**'
- 'infra/envs/**'
- '.github/workflows/ecs_terraform.yaml'
push:
branches: [main]
paths:
- 'infra/ecs/**'
- 'infra/envs/**'
# - '.github/workflows/ecs_terraform.yaml'
# Uncomment below to allow manual execution from GitHub UI
# workflow_dispatch:

permissions:
contents: read
Expand Down