-
-
Notifications
You must be signed in to change notification settings - Fork 81
Add missing API Keys #267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing API Keys #267
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -41,7 +41,7 @@ jobs: | |||||
| with: | ||||||
| node-version: 22 | ||||||
| cache: npm # or pnpm / yarn | ||||||
| - name: Setup Ruby | ||||||
| - name: Setup Ruby | ||||||
| uses: ruby/setup-ruby@v1 | ||||||
| with: | ||||||
| ruby-version: ruby-3.3.0 | ||||||
|
|
@@ -56,6 +56,9 @@ jobs: | |||||
| env: | ||||||
| RAILS_ENV: test | ||||||
| RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} | ||||||
| ANTHROPIC_API_KEY: ANTHROPIC_API_KEY | ||||||
| OPEN_AI_API_KEY: OPEN_AI_API_KEY | ||||||
|
||||||
| OPEN_AI_API_KEY: OPEN_AI_API_KEY | |
| OPEN_AI_API_KEY: ${{ secrets.OPEN_AI_API_KEY }} |
Copilot
AI
Nov 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The API key is set to the literal string "OPEN_ROUTER_API_KEY" instead of referencing a GitHub secret. It should be ${{ secrets.OPEN_ROUTER_API_KEY }} to properly inject the secret value, similar to how RAILS_MASTER_KEY is configured on line 58.
| OPEN_ROUTER_API_KEY: OPEN_ROUTER_API_KEY | |
| OPEN_ROUTER_API_KEY: ${{ secrets.OPEN_ROUTER_API_KEY }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The API key is set to the literal string "ANTHROPIC_API_KEY" instead of referencing a GitHub secret. It should be
${{ secrets.ANTHROPIC_API_KEY }}to properly inject the secret value, similar to howRAILS_MASTER_KEYis configured on line 58.