Add EVERART_API_KEY authentication to nightly MCP stress test#660
Merged
Add EVERART_API_KEY authentication to nightly MCP stress test#660
Conversation
Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add API credentials for EverArt MCP server
Add EVERART_API_KEY authentication to nightly MCP stress test
Feb 4, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds authentication support for the EverArt MCP server by configuring the EVERART_API_KEY environment variable in the nightly stress test workflow, following detection that the server requires API credentials to function.
Changes:
- Added
EVERART_API_KEYenvironment variable configuration to the EverArt MCP server in the workflow definition - Updated the compiled workflow lock file to include the new secret in Docker environment variables and secret redaction lists
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/nightly-mcp-stress-test.md | Added env section with EVERART_API_KEY to the everart MCP server configuration |
| .github/workflows/nightly-mcp-stress-test.lock.yml | Propagated changes to compiled workflow including Docker command, MCP config JSON, and secret redaction |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| await main(); | ||
| env: | ||
| GH_AW_SECRET_NAMES: 'COPILOT_GITHUB_TOKEN,GH_AW_GITHUB_MCP_SERVER_TOKEN,GH_AW_GITHUB_TOKEN,GITHUB_TOKEN,GOOGLE_APPLICATION_CREDENTIALS' | ||
| GH_AW_SECRET_NAMES: 'COPILOT_GITHUB_TOKEN,EVERART_API_KEY,GH_AW_GITHUB_MCP_SERVER_TOKEN,GH_AW_GITHUB_TOKEN,GITHUB_TOKEN' |
There was a problem hiding this comment.
The secret name GOOGLE_APPLICATION_CREDENTIALS was removed from the GH_AW_SECRET_NAMES list but it appears intentional based on the changes. However, verify that this secret is no longer needed or if it was accidentally removed during the update.
Suggested change
| GH_AW_SECRET_NAMES: 'COPILOT_GITHUB_TOKEN,EVERART_API_KEY,GH_AW_GITHUB_MCP_SERVER_TOKEN,GH_AW_GITHUB_TOKEN,GITHUB_TOKEN' | |
| GH_AW_SECRET_NAMES: 'COPILOT_GITHUB_TOKEN,EVERART_API_KEY,GH_AW_GITHUB_MCP_SERVER_TOKEN,GH_AW_GITHUB_TOKEN,GITHUB_TOKEN,GOOGLE_APPLICATION_CREDENTIALS' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Nightly stress test detected EverArt MCP server requires API credentials. Added environment variable configuration following the existing pattern.
Changes
envsection toeverartMCP server configuration withEVERART_API_KEYsecret referencePost-merge
Repository owners need to add
EVERART_API_KEYas a repository secret with valid EverArt API credentials.Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.