Fix CI/CD maintenance workflow triggering for PRs (Issue #14)#27
Merged
Conversation
- Distinguish between standard changes (coverage thresholds, bug fixes) and complex changes (new workflows, permissions) - Standard changes can auto-merge after CI validation - Complex changes require manual review for security implications - Update workflow examples to reflect appropriate review level
- Add pull_request trigger to ci-cd-maintenance.yml workflow - Add conditional check to only run when source branch is ci-cd-maintenance - Add branches-ignore exclusion to pr-summary.yml workflow - Ensures ci-cd-maintenance PRs use specialized workflow instead of regular CI Fixes: #14
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Contributor
🔍 CI Quality Gates SummaryOverall Status: ✅ All Passed
🔗 Quick Links🛠️ Quick Fix Commands# Fix most issues automatically
ruff format .
ruff check . --fix
# Run tests locally
pytest tests/unit/ --cov=markitdown_mcp
# Check types
mypy markitdown_mcpLast updated: 2025-09-17 17:37:24 UTC |
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.
Summary
Changes Made
pull_requesttrigger and conditionalifstatementbranches-ignore: [ci-cd-maintenance]exclusionTest Plan
Fixes
Resolves #14
Expected Behavior After Fix