From b7116d2bc2563cd0a60863bc919ec3146cad0c6a Mon Sep 17 00:00:00 2001 From: Delong Yang Date: Tue, 15 Apr 2025 14:24:17 -0400 Subject: [PATCH] Fix a typo --- eks_automation/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eks_automation/app.py b/eks_automation/app.py index dcd50ff..8bd6b50 100644 --- a/eks_automation/app.py +++ b/eks_automation/app.py @@ -137,7 +137,7 @@ def operate_github(new_repo_name, eks_settings, output_hcl): # Commit and push the changes. cloned_repo.index.add(output_hcl) - commit_message = "Add the EKS paramter file by the Lambda function" + commit_message = "Add the EKS parameter file by the Lambda function" cloned_repo.index.commit(commit_message) cloned_repo.git.push("--set-upstream", origin.name, "main", force=True)