You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ecs_terraform.yaml
+15-14Lines changed: 15 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,21 @@
1
1
name: "Terraform CICD - AWS ECS Instance"
2
2
3
-
#Automation for AWS ECS Instance using Terraform is PAUSED. Use/Create manual deployment for now.
3
+
#Github workflow triggers based on changes made in specific paths
4
4
on:
5
-
# pull_request:
6
-
# branches: [main]
7
-
# paths:
8
-
# - 'infra/ecs/**'
9
-
# - 'infra/envs/**'
10
-
# - '.github/workflows/ecs_terraform.yaml'
11
-
# push:
12
-
# branches: [main]
13
-
# paths:
14
-
# - 'infra/ecs/**'
15
-
# - 'infra/envs/**'
16
-
# - '.github/workflows/ecs_terraform.yaml'
17
-
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.
5
+
pull_request:
6
+
branches: [main]
7
+
paths:
8
+
- 'infra/ecs/**'
9
+
- 'infra/envs/**'
10
+
- '.github/workflows/ecs_terraform.yaml'
11
+
push:
12
+
branches: [main]
13
+
paths:
14
+
- 'infra/ecs/**'
15
+
- 'infra/envs/**'
16
+
# - '.github/workflows/ecs_terraform.yaml'
17
+
# Uncomment below to allow manual execution from GitHub UI
0 commit comments