Files
gadfly/.gitea/workflows/zz-wf-call-probe-reusable.yml
T
steve 6856ec3d24
zz-wf-call-probe-caller / call-reusable (push) Successful in 2s
test: throwaway workflow_call + secrets:inherit feasibility probe (Phase 4)
2026-06-27 18:51:37 -04:00

14 lines
429 B
YAML

# THROWAWAY feasibility probe for Phase 4 — delete after.
name: zz-wf-call-probe-reusable
on:
workflow_call: {}
jobs:
probe:
runs-on: ubuntu-latest
steps:
- name: report inherited-secret visibility (no leak)
env:
S: ${{ secrets.OLLAMA_CLOUD_API_KEY }}
run: |
if [ -n "$S" ]; then echo "WFCALL_PROBE_RESULT=SECRET_PRESENT"; else echo "WFCALL_PROBE_RESULT=SECRET_ABSENT"; fi