Draft
Add CI/CD pipeline for Azure Functions deployment#4
Conversation
- Create .funcignore to exclude unnecessary files from deployment - Update azure-functions-deploy.yml with build/test/deploy stages - Add production and staging environment support - Add PIPELINE_GUIDE.md with detailed documentation - Add .github/CICD_SETUP.md with quick setup instructions - Update README.md with CI/CD pipeline references Co-authored-by: ZEN-PUNK <176780312+ZEN-PUNK@users.noreply.github.com>
- Add .github/DEPLOYMENT_STATUS.md to track pipeline status and requirements - Update AZURE_DEPLOYMENT.md to reference automated CI/CD pipeline - Provide clear guidance on recommended deployment method Co-authored-by: ZEN-PUNK <176780312+ZEN-PUNK@users.noreply.github.com>
- Fix conditional logic in deploy-production job with explicit parentheses - Remove quotes from step names for consistency with GitHub Actions conventions - Fix misleading comment in .funcignore about node_modules exclusion Co-authored-by: ZEN-PUNK <176780312+ZEN-PUNK@users.noreply.github.com>
- Add PIPELINE_COMPLETE.md with implementation overview - Provide quick start guide and architecture decisions - Include testing and monitoring instructions Co-authored-by: ZEN-PUNK <176780312+ZEN-PUNK@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Create build and release pipeline for function deployment
Add CI/CD pipeline for Azure Functions deployment
Dec 25, 2025
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.
Implements automated build and release pipeline for deploying XPR MCP Server to Azure Functions.
Pipeline Architecture
Build Job:
Deploy Jobs:
mainpushConfiguration
.funcignoreExcludes from deployment:
.git/,.github/,research/,agentic_dev/, test files, markdown docs.github/workflows/azure-functions-deploy.ymlSetup Requirements
GitHub Secrets:
AZURE_CLIENT_ID- Service principal client IDAZURE_TENANT_ID- Azure tenant IDAZURE_SUBSCRIPTION_ID- Subscription IDAZURE_FUNCTIONAPP_NAME- Function App nameAZURE_FUNCTIONAPP_NAME_STAGING- (Optional) Staging Function AppAzure Resources:
Documentation
.github/CICD_SETUP.md- 5-minute setup guidePIPELINE_GUIDE.md- Comprehensive reference.github/DEPLOYMENT_STATUS.md- Deployment checklistSecurity
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.