Skip to content

Conversation

continue[bot]
Copy link
Contributor

@continue continue bot commented Sep 25, 2025

Fixes CONTINUE_API_KEY usage in GitHub workflow examples to follow best practices by using environment variable declarations instead of inline secrets references.

Changes

  • docs/guides/snyk-mcp-continue-cookbook.mdx: Updated 'Authenticate Continue CLI' step to use proper env variable setup
  • docs/guides/netlify-mcp-continuous-deployment.mdx: Added CONTINUE_API_KEY to env section in 'Deploy and Test Performance' step

Before

- name: Authenticate Continue CLI
  run: |
    cn auth login --api-key "${{ secrets.CONTINUE_API_KEY }}"

After

- name: Authenticate Continue CLI
  env:
    CONTINUE_API_KEY: ${{ secrets.CONTINUE_API_KEY }}
  run: |
    cn auth login --api-key "$CONTINUE_API_KEY"

This follows GitHub Actions best practices for handling secrets and environment variables.

Resolves: CON-4107


This agent session was created by tingwai and co-authored by Continue noreply@continue.dev.


Summary by cubic

Updated GitHub Actions examples to use CONTINUE_API_KEY via env instead of inline secrets. Addresses CON-4107 and aligns with GitHub Actions best practices for secrets.

  • Bug Fixes
    • docs/guides/snyk-mcp-continue-cookbook.mdx: Authenticate step now reads CONTINUE_API_KEY from env.
    • docs/guides/netlify-mcp-continuous-deployment.mdx: Added CONTINUE_API_KEY to the env block in “Deploy and Test Performance”.

- Updated snyk-mcp-continue-cookbook.mdx to use env variable setup for CONTINUE_API_KEY
- Updated netlify-mcp-continuous-deployment.mdx to include CONTINUE_API_KEY in env section
- Follows best practice of declaring environment variables in env section instead of inline secrets reference

Generated with Continue (https://continue.dev)

Co-Authored-By: Continue <noreply@continue.dev>
@continue continue bot requested a review from a team as a code owner September 25, 2025 17:05
@continue continue bot requested review from sestinj and removed request for a team September 25, 2025 17:05
@dosubot dosubot bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Sep 25, 2025
- Added Continue CLI installation step
- Added Continue CLI authentication with proper env variable setup
- Added GitHub Secrets section with required variables
- Updated workflow to use cn -p instead of npx with heredoc
- Follows same pattern as Snyk guide for consistency

Generated with Continue (https://continue.dev)

Co-Authored-By: Continue <noreply@continue.dev>
@dosubot dosubot bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:XS This PR changes 0-9 lines, ignoring generated files. labels Sep 25, 2025
@bdougie bdougie merged commit 0472a6d into feat/add-agents-to-guides Sep 25, 2025
5 checks passed
@bdougie bdougie deleted the mcp/con-4107 branch September 25, 2025 17:24
@github-project-automation github-project-automation bot moved this from Todo to Done in Issues and PRs Sep 25, 2025
@github-actions github-actions bot locked and limited conversation to collaborators Sep 25, 2025
@sestinj
Copy link
Contributor

sestinj commented Sep 26, 2025

🎉 This PR is included in version 1.1.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@sestinj
Copy link
Contributor

sestinj commented Sep 26, 2025

🎉 This PR is included in version 1.22.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@sestinj
Copy link
Contributor

sestinj commented Oct 1, 2025

🎉 This PR is included in version 1.21.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
released size:M This PR changes 30-99 lines, ignoring generated files.
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

2 participants