Gitea Actions Runner 동작 확인용 ping 워크플로 추가
All checks were successful
Ping (runner check) / ping (push) Successful in 3s
All checks were successful
Ping (runner check) / ping (push) Successful in 3s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
18
.gitea/workflows/ping.yml
Normal file
18
.gitea/workflows/ping.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
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')"
|
||||
Reference in New Issue
Block a user