Add Orchestrator ci to run other ci#184
Merged
rahuldevikar761 merged 3 commits intomainfrom Jan 23, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request introduces a CI orchestrator workflow that centralizes and coordinates the execution of existing CI workflows across the repository. The orchestrator detects changes in specific directories and conditionally triggers the appropriate workflows, providing a unified entry point for branch protection requirements.
Changes:
- Added a new CI orchestrator workflow that uses path filtering to detect changes and conditionally call existing workflows
- Updated 10 existing CI workflows to support
workflow_callandworkflow_dispatchtriggers for orchestrator integration - Added Microsoft copyright headers to 7 workflow files that were missing them
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/ci-orchestrator.yml | New orchestrator workflow with change detection, conditional job execution, and unified status reporting |
| .github/workflows/python-claude-sample.yml | Added copyright header and workflow_call/workflow_dispatch triggers |
| .github/workflows/ci-python-openai-sampleagent.yml | Added copyright header and workflow_call/workflow_dispatch triggers |
| .github/workflows/ci-python-googleadk-sampleagent.yml | Added copyright header and workflow_call/workflow_dispatch triggers |
| .github/workflows/ci-python-agentframework-sampleagent.yml | Added copyright header and workflow_call/workflow_dispatch triggers |
| .github/workflows/ci-nodejs-vercelsdk-sampleagent.yml | Added workflow_call/workflow_dispatch triggers (already had copyright header) |
| .github/workflows/ci-nodejs-openai-sampleagent.yml | Added workflow_call/workflow_dispatch triggers (already had copyright header) |
| .github/workflows/ci-nodejs-langchain-sampleagent.yml | Added workflow_call/workflow_dispatch triggers (already had copyright header) |
| .github/workflows/ci-nodejs-claude-sampleagent.yml | Added workflow_call/workflow_dispatch triggers (already had copyright header) |
| .github/workflows/ci-dotnet-semantickernel-sampleagent.yml | Added copyright header and workflow_call/workflow_dispatch triggers |
| .github/workflows/ci-dotnet-agentframework-sampleagent.yml | Added copyright header and workflow_call/workflow_dispatch triggers |
Comments suppressed due to low confidence (1)
.github/workflows/python-claude-sample.yml:12
- The python-claude-sample workflow is configured to trigger on branches [main, develop], which differs from all other workflows that use [main, master]. The orchestrator uses [main, master], meaning python-claude-sample will be called by the orchestrator for master branch changes (via workflow_call) but would not trigger directly on master. This creates inconsistent behavior. Consider standardizing all workflows to use the same branch configuration, or document why python-claude-sample needs different branch triggers.
branches:
- main
- develop
pontemonti
previously approved these changes
Jan 23, 2026
mrunalhirve128
approved these changes
Jan 23, 2026
pontemonti
approved these changes
Jan 23, 2026
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.
No description provided.