From 971cdab3aba503b19ec90867d06078d3bf0858cf Mon Sep 17 00:00:00 2001 From: Nadav Erell Date: Sun, 2 Nov 2025 02:56:15 +0200 Subject: [PATCH] =?UTF-8?q?rebrand:=20KoalaOps=20=E2=86=92=20Skyhook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update all references from KoalaOps to Skyhook: - Organization: KoalaOps → skyhook-io - Author: KoalaOps → Skyhook - Product name: Koala → Skyhook - All usage examples and documentation updated --- README.md | 12 ++++++------ action.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index db3f1af..1d5f855 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Patches environment files (.env) with configuration values from JSON, supporting ### Single file patching ```yaml - name: Patch .env file - uses: KoalaOps/patch-env-files@v1 + uses: skyhook-io/patch-env-files@v1 with: patches: | { @@ -29,7 +29,7 @@ Patches environment files (.env) with configuration values from JSON, supporting ### Multiple files patching ```yaml - name: Patch multiple env files - uses: KoalaOps/patch-env-files@v1 + uses: skyhook-io/patch-env-files@v1 with: patches: | { @@ -49,7 +49,7 @@ Patches environment files (.env) with configuration values from JSON, supporting ### With base64 encoded patches ```yaml - name: Patch with base64 config - uses: KoalaOps/patch-env-files@v1 + uses: skyhook-io/patch-env-files@v1 with: patches: ${{ secrets.ENV_PATCHES_B64 }} ``` @@ -88,7 +88,7 @@ JSON object mapping file paths to their key-value patches: ### Dynamic version injection ```yaml - name: Inject build metadata - uses: KoalaOps/patch-env-files@v1 + uses: skyhook-io/patch-env-files@v1 with: patches: | { @@ -103,7 +103,7 @@ JSON object mapping file paths to their key-value patches: ### Environment-specific configuration ```yaml - name: Apply environment config - uses: KoalaOps/patch-env-files@v1 + uses: skyhook-io/patch-env-files@v1 with: path: ./deploy patches: | @@ -123,7 +123,7 @@ JSON object mapping file paths to their key-value patches: ```yaml - name: Apply runtime overrides if provided if: inputs.runtime_patches_b64 != '' - uses: KoalaOps/patch-env-files@v1 + uses: skyhook-io/patch-env-files@v1 with: patches: ${{ inputs.runtime_patches_b64 }} ``` diff --git a/action.yml b/action.yml index a9137fb..ca154b9 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,6 @@ name: 'Patch Env Files' description: 'Patch environment files with configuration values from JSON' -author: 'KoalaOps' +author: 'Skyhook' branding: icon: 'settings'