All checks were successful
Ping (runner check) / ping (push) Successful in 3s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
364 B
YAML
19 lines
364 B
YAML
name: Ping (runner check)
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- '.gitea/workflows/ping.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
ping:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Say hello
|
|
run: |
|
|
echo "Runner is alive."
|
|
echo "OS: $(uname -a)"
|
|
echo "Node: $(node --version 2>/dev/null || echo 'not installed')"
|