feat: add ci:update and ci:add commands#2
Merged
damienlagae merged 2 commits intomainfrom Feb 26, 2026
Merged
Conversation
Add two targeted commands for managing CI configuration without re-running the full init flow: - ci:update: detects existing CI providers and regenerates their files - ci:add: adds a new CI provider with --force to overwrite Enrich ProjectDetector with CI provider detection, database detection from compose.yaml, and tool file detection. Extract shared CI logic into CiCommandHelper.
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
ci:updatecommand to detect and regenerate existing CI configuration (GitLab, GitHub, Azure)ci:addcommand to add a new CI provider with--forceto overwriteProjectDetectorwith CI provider detection, database detection fromcompose.yaml, and tool file detectionCiCommandHelperfor options, config building, and file generationNew files
src/Command/CiUpdateCommand.phpsrc/Command/CiAddCommand.phpsrc/Command/CiCommandHelper.phpModified files
src/Detector/ProjectDetector.php— 6 new detection methodssrc/Application.php— register new commandsTest plan
ci:updatefails when no CI detectedci:updateregenerates GitLab/GitHub when files existci:updaterespects --php-version and --database overridesci:addrequires --provider in non-interactive modeci:addblocks existing provider without --forceci:addgenerates correct files per provider