build(build): add concurrency controls to orchestrator workflows#275
Merged
WilliamBerryiii merged 3 commits intomainfrom Jan 25, 2026
Merged
build(build): add concurrency controls to orchestrator workflows#275WilliamBerryiii merged 3 commits intomainfrom
WilliamBerryiii merged 3 commits intomainfrom
Conversation
- Add workflow-level concurrency to pr-validation.yml with cancel-in-progress - Add workflow-level concurrency to main.yml without cancellation - Add workflow-level concurrency to weekly-security-maintenance.yml - Update dictionary with missing terms (carryforward, SCHED, SECCHECK) Fixes #274 ⚡ - Generated by Copilot
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #275 +/- ##
==========================================
+ Coverage 29.40% 29.44% +0.03%
==========================================
Files 14 14
Lines 2785 2785
==========================================
+ Hits 819 820 +1
+ Misses 1966 1965 -1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
Contributor
There was a problem hiding this comment.
Pull request overview
Adds GitHub Actions workflow-level concurrency controls to reduce redundant parallel orchestrator runs and lower Actions resource usage, plus fixes pre-existing spell-check dictionary gaps.
Changes:
- Added
concurrencyblocks to PR validation, main CI, and weekly security maintenance workflows with appropriate cancel/queue behavior. - Updated
.cspelldictionary with missing technical terms to eliminate existing spell-check failures.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/pr-validation.yml | Adds workflow concurrency with cancellation of superseded PR runs. |
| .github/workflows/main.yml | Adds workflow concurrency to serialize main builds without cancellation. |
| .github/workflows/weekly-security-maintenance.yml | Adds workflow concurrency to prevent overlapping weekly security runs. |
| .cspell/general-technical.txt | Adds missing Codecov and Mermaid diagram terms to the spell-check dictionary. |
…sions - Change group key from github.head_ref to github.event.pull_request.number - Prevents unrelated fork PRs with same branch name from cancelling each other 🔧 - Generated by Copilot
agreaves-ms
approved these changes
Jan 24, 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.
Description
Adds workflow-level concurrency controls to all three orchestrator workflows. This prevents unnecessary parallel runs when multiple commits are pushed in quick succession and reduces GitHub Actions resource consumption.
Changes:
concurrencyblock topr-validation.ymlwithcancel-in-progress: trueto cancel stale PR validation runs when new commits arriveconcurrencyblock tomain.ymlwithcancel-in-progress: falseto prevent cancellation of main branch buildsconcurrencyblock toweekly-security-maintenance.ymlwithcancel-in-progress: falsefor scheduled job protection.cspell/general-technical.txtwith missing dictionary terms (carryforward,SCHED,SECCHECK) that were causing pre-existing spell-check failuresRelated Issue(s)
Fixes #274
Type of Change
Select all that apply:
Code & Documentation:
Infrastructure & Configuration:
AI Artifacts:
prompt-builderagent and addressed all feedback.github/instructions/*.instructions.md).github/prompts/*.prompt.md).github/agents/*.agent.md)Other:
.ps1,.sh,.py)Sample Prompts (for AI Artifact Contributions)
N/A - This PR does not include AI artifacts.
Testing
npm run lint:yaml)npm run spell-check)Checklist
Required Checks
AI Artifact Contributions
N/A
Required Automated Checks
The following validation commands must pass before merging:
npm run lint:mdnpm run spell-checknpm run lint:frontmatternpm run lint:md-linksnpm run lint:psSecurity Considerations
Additional Notes
Concurrency Configuration Patterns
pr-validation.ymlworkflow-head_reftruemain.ymlworkflow-reffalseweekly-security-maintenance.ymlworkflowfalseDictionary Updates
Fixed pre-existing spell-check gaps that passed CI due to timing:
carryforward- Codecov configuration term (PR build(build): add Pester code coverage to main branch CI #250)SCHED,SECCHECK- Mermaid diagram labels (PR docs(architecture): add architecture documentation and value proposition #252)⚡ - Generated by Copilot