Skip to content

Commit 7a44960

Browse files
author
Akkari
committed
fix: use correct repository secret name for CI validation
References ANTHROPIC_API_KEY_GH_SHAREDIN_QUORUM instead of ANTHROPIC_API_KEY to match the actual repository secret name.
1 parent db27644 commit 7a44960

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/quorum-validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: MIT
22
# Quorum Self-Validation CI Gate
33
# Runs standard-depth validation on changed files for every PR to main.
4-
# Requires ANTHROPIC_API_KEY in repository secrets.
4+
# Requires ANTHROPIC_API_KEY_GH_SHAREDIN_QUORUM in repository secrets.
55

66
name: Quorum Validation
77

@@ -79,7 +79,7 @@ jobs:
7979
if: steps.changes.outputs.skip != 'true'
8080
working-directory: reference-implementation
8181
env:
82-
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
82+
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY_GH_SHAREDIN_QUORUM }}
8383
run: |
8484
DEPTH="${{ github.event.inputs.depth || 'standard' }}"
8585
MAX_COST="${{ github.event.inputs.max_cost || '5.00' }}"

0 commit comments

Comments
 (0)