From 42879294b5b1118f74f3e27c244b9fc06a8eef4e Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Mon, 15 Sep 2025 19:22:30 +0200 Subject: [PATCH] chore: Replace Makefile with atmos.yaml --- Makefile | 10 ---------- atmos.yaml | 2 ++ docs/github-action.md | 17 ----------------- 3 files changed, 2 insertions(+), 27 deletions(-) delete mode 100644 Makefile create mode 100644 atmos.yaml delete mode 100644 docs/github-action.md diff --git a/Makefile b/Makefile deleted file mode 100644 index dc7415e..0000000 --- a/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -SHELL := /bin/bash - -# List of targets the `readme` target should call before generating the readme -export README_DEPS ?= docs/github-action.md - --include $(shell curl -sSL -o .build-harness "https://cloudposse.tools/build-harness"; echo .build-harness) - -## Lint terraform code -lint: - $(SELF) terraform/install terraform/get-modules terraform/get-plugins terraform/lint terraform/validate \ No newline at end of file diff --git a/atmos.yaml b/atmos.yaml new file mode 100644 index 0000000..dfa6aca --- /dev/null +++ b/atmos.yaml @@ -0,0 +1,2 @@ +import: + - https://raw.githubusercontent.com/cloudposse/.github/refs/heads/main/.github/atmos/github-action.yaml diff --git a/docs/github-action.md b/docs/github-action.md deleted file mode 100644 index e243e8b..0000000 --- a/docs/github-action.md +++ /dev/null @@ -1,17 +0,0 @@ - - -## Inputs - -| Name | Description | Default | Required | -|------|-------------|---------|----------| -| input-string | The string you'd like to perform the operation on | N/A | true | -| max-length | The maximum length of the string, or -1 to not limit the length | -1 | false | -| operation | Operation you would like to run on the string, valid values are: `lowercase`, `uppercase`, `kebabcase`, `dns-subdomain` | lowercase | true | - - -## Outputs - -| Name | Description | -|------|-------------| -| output-string | The transformed string | -