From fb0def6e2fefdf1837068c00c6c2614e0f16db1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20Moreira?= Date: Fri, 17 Jan 2020 09:46:27 -0300 Subject: [PATCH] Rename action --- README.md | 4 ++-- action.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 76738b0..f31102f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -k8s-gh-action +kubernetes-action ============= -Runs `kubectl` with support for `AWS EKS`. +Interacts with kubernetes clusters calling `kubectl` commands. Integrates support for **AWS EKS**. ## Usage diff --git a/action.yml b/action.yml index 9bc252b..0451cbf 100644 --- a/action.yml +++ b/action.yml @@ -1,12 +1,12 @@ -name: "Kubectl" -description: "Trigger kubectl actions with support for aws" +name: "Kubernetes Action" +description: "Interacts with kubernetes clusters calling kubectl commands. Integrates support for AWS EKS." inputs: args: description: "Arguments of kubectl" required: true outputs: result: - description: "Result of the kubectl command run" + description: "Output of the kubectl command run" runs: using: "docker" image: "Dockerfile"