From 8a27d14d25db610e7405a9acae846b48054ed17c Mon Sep 17 00:00:00 2001 From: darkcodex Date: Tue, 10 Mar 2026 22:50:17 +0100 Subject: [PATCH] chore: remove temporary diagnostic workflow --- .github/workflows/find-impulsa-web.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/find-impulsa-web.yml diff --git a/.github/workflows/find-impulsa-web.yml b/.github/workflows/find-impulsa-web.yml deleted file mode 100644 index ed4876d..0000000 --- a/.github/workflows/find-impulsa-web.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: read-impulsa-compose -on: - workflow_dispatch: - -jobs: - find: - runs-on: self-hosted - steps: - - name: Read impulsa production compose and find landing Dockerfile - run: | - echo "=== /opt/impulsa/environments/production/docker-compose.yml ===" - docker run --rm -v /opt/impulsa:/impulsa alpine cat /impulsa/environments/production/docker-compose.yml - echo "=== /opt/impulsa directory tree (depth 3) ===" - docker run --rm -v /opt/impulsa:/impulsa alpine find /impulsa -maxdepth 4 -name "*.yml" -o -name "*.yaml" -o -name "Dockerfile*" 2>/dev/null - echo "=== Container start command ===" - docker inspect impulsa_landing --format '{{.Name}} {{.Config.Cmd}} {{.HostConfig.Binds}}'