Skip to content

Commit

Permalink
[EC-318] Added some comments inside CORE pipelines (#1036)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamu0 authored Jun 20, 2024
1 parent 373cef6 commit 6f4e1a5
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/core_code_review.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: PR - Core TF Validation

# This pipeline starts automatically when a PR is opened.
#
# It is responsible for managing changes related solely to the NEW infrastructure.
# Therefore, it checks whether the changes have occurred only in the directories listed in "paths."
#
## NOTE: 'NEW infrastructure' refers to the new Terraform infrastructure located in the src/core/prod folder, which no longer requires the terraform.sh script to be applied.

on:
workflow_dispatch:
pull_request:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/core_code_review_weu.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: WEU - Core TF Validation (PROD)

# This pipeline starts automatically when a PR is opened.
#
# It is responsible for managing only the legacy part (West Europe),
# ensuring that changes have occurred exclusively within the directories listed in "paths."
# It ignores the folders related to the new infrastructure, indicated by the symbol '!', which denotes an excluded path.

on:
workflow_dispatch:
pull_request:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/core_deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
name: PR - Core TF Apply

# This pipeline starts automatically when a PR is merged into 'main'.
#
# It is responsible for managing changes related solely to the NEW infrastructure,
# ensuring that changes have occurred exclusively within the directories listed in "paths."
#
## NOTE: 'NEW infrastructure' refers to the new Terraform infrastructure located in the src/core/prod folder, which no longer requires the terraform.sh script to be applied.
#
# This pipeline first executes a plan and then an apply, which must be approved by the team.

on:
workflow_dispatch:
push:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/core_deploy_weu.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: WEU - Core TF Apply (PROD)

# Only manual
# This pipeline starts automatically when a PR is merged into 'main'.
#
# It is responsible for managing only the legacy part (West Europe),
# ensuring that changes have occurred exclusively within the directories listed in "paths."
# It ignores the folders related to the new mode, indicated by the symbol '!', which denotes an excluded path.
#
# This pipeline will use the terraform.sh script, which first executes a plan and then an apply, both of which must be approved by the team.

on:
workflow_dispatch:
push:
Expand Down

0 comments on commit 6f4e1a5

Please sign in to comment.