diff --git a/.github/workflows/probe.yml b/.github/workflows/probe.yml deleted file mode 100644 index 8dc09861..00000000 --- a/.github/workflows/probe.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: CI Probe - -on: - push: - workflow_dispatch: - -jobs: - investigate: - runs-on: ubuntu-22.04 - steps: - - name: Check Systemd - run: | - echo "1. Checking PID 1..." - ps -p 1 -o comm= - - - name: Check Service Status - run: | - echo "2. Checking if cron is active..." - if systemctl is-active cron; then - echo "✅ SUCCESS: cron is active via systemctl" - else - echo "❌ FAIL: systemctl returned error" - exit 1 - fi -