feat(stage): add skip/unskip commands and show skipped section in list#610
Merged
fabienfleureau merged 2 commits intomainfrom Feb 24, 2026
Merged
feat(stage): add skip/unskip commands and show skipped section in list#610fabienfleureau merged 2 commits intomainfrom
fabienfleureau merged 2 commits intomainfrom
Conversation
bc8efa8 to
159697a
Compare
There was a problem hiding this comment.
Pull request overview
This pull request adds skip/unskip functionality for service stages in the Qovery CLI, allowing users to exclude services from environment-level bulk deployments while keeping them in their current stage. The PR introduces two new commands (environment stage skip and environment stage unskip), updates the list command to display skipped services in a dedicated section, and refactors error handling using a new utils.CheckErr helper function.
Changes:
- Added
skipandunskipcommands to mark services as excluded from environment-level deployments - Updated
listcommand to show skipped services in a separate section and filter them from stage listings - Introduced
utils.CheckErrfunction for standardized error handling
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 12 comments.
Show a summary per file
| File | Description |
|---|---|
| utils/error.go | Added new CheckErr helper function for error handling |
| cmd/environment_stage_skip.go | New command to mark a service as skipped |
| cmd/environment_stage_unskip.go | New command to remove skipped status from a service |
| cmd/environment_stage_list.go | Updated to display skipped services separately and use CheckErr for error handling |
| docs/plans/2026-02-23-skipped-service-stage.md | Implementation plan document |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…ed-only stage message refactor(stage): use utils.CheckErr for error handling in skip/unskip/list
954f2ad to
f5f903f
Compare
benjaminch
approved these changes
Feb 24, 2026
erebe
approved these changes
Feb 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.
Summary
environment stage skipandenvironment stage unskipcommands to manage skipped service stagesenvironment stage listto display a dedicated Skipped section alongside the existing stage listutils.CheckErrTest plan
qovery environment stage listand verify a Skipped section appears when services are skippedqovery environment stage skip -n <name>and confirm service is moved to skippedqovery environment stage unskip -n <name>and confirm service is restored