deployer
                                
                                 deployer copied to clipboard
                                
                                    deployer copied to clipboard
                            
                            
                            
                        Tasks not run on current stage still shown in CI output
- Deployer version: 7.0.0-rc2
- Deployment OS: Alpine
The Deployer in our CI job looks like this;

I've expanded the collapsed tasks on line 851-855. As you can see, there is nothing in the output. That is because these tasks are run on specific stages (labels) and the output you see is from a deployment on the master branch.
These tasks are defined as such;
task('magento:create:env', function () {
 /// logic
})->select('stage=review, stage=staging');
In my opinion, these shouldn't be shown in the CI output when the labels do not match.