mirror of
https://github.com/koichixD/uptime-kuma.git
synced 2026-09-03 13:00:33 +00:00
26 lines
534 B
YAML
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
|
|
|