Files
uptime-kuma/.github/workflows/probe.yml
T
2025-12-28 07:57:46 +01:00

26 lines
534 B
YAML

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