every.channel/.forgejo/workflows/runner-smoke.yml
Conrad Kramer 81724b7030
Some checks failed
ci-gates / checks (push) Failing after 1s
deploy-cloudflare / checks (push) Failing after 1s
deploy-cloudflare / deploy (push) Has been skipped
Use local Forgejo runner label
2026-06-10 03:19:02 -07:00

22 lines
547 B
YAML

name: runner-smoke
on:
workflow_dispatch: {}
jobs:
smoke:
if: ${{ github.server_url != 'https://codeberg.org' }}
runs-on: namespace-profile-linux-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