ci: add hosted-runner smoke workflow

This commit is contained in:
every.channel 2026-02-16 00:35:10 -05:00
parent e4fc36035b
commit ff19be3b21
No known key found for this signature in database

View file

@ -0,0 +1,21 @@
name: runner-smoke
on:
workflow_dispatch: {}
jobs:
smoke:
runs-on: codeberg-medium
steps:
- name: Basic runner + secret smoke test
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
run: |
set -euo pipefail
echo "runner-ok"
if [[ -n "${CLOUDFLARE_API_TOKEN:-}" ]]; then
echo "secret-present"
else
echo "secret-missing"
exit 2
fi