every.channel/.forgejo/workflows/runner-smoke.yml
2026-02-16 17:46:32 -05:00

21 lines
478 B
YAML

name: runner-smoke
on:
workflow_dispatch: {}
jobs:
smoke:
runs-on: codeberg-medium-lazy
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