Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/org-secret-probe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: org-secret-probe
# TEMPORARY. Answers one question: can a repo on the GitHub Free plan read an
# org-level Actions secret? Reports the LENGTH only — never the value.
on: pull_request
jobs:
probe:
runs-on: ubuntu-latest
steps:
- env:
K: ${{ secrets.AGENT_JURY_API_KEY }}
run: |
echo "repo visibility: public (cerebral-work/.github)"
echo "org secret AGENT_JURY_API_KEY length: ${#K}"
if [ -n "$K" ]; then echo "RESULT: org secret IS readable here"; else echo "RESULT: org secret is EMPTY here"; fi