fix(ci): rename continuation config parameters with c- prefix#19142
Merged
fix(ci): rename continuation config parameters with c- prefix#19142
Conversation
Contributor
Plan expiredYour subscription has expired. Please renew your subscription to continue using CI/CD integration and other features. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #19142 +/- ##
===========================================
+ Coverage 75.7% 76.0% +0.2%
===========================================
Files 692 188 -504
Lines 71528 10946 -60582
===========================================
- Hits 54217 8324 -45893
+ Misses 17165 2478 -14687
+ Partials 146 144 -2
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
sebastianst
approved these changes
Feb 11, 2026
Member
sebastianst
left a comment
There was a problem hiding this comment.
CircleCI parameters are really a mess to deal with. I'm wondering if there's a better way to pass through params.
1539951 to
f0ffcad
Compare
f0ffcad to
6d21a0c
Compare
6d21a0c to
5134cdf
Compare
Rename all pipeline parameters in CircleCI continuation configs (main.yml, rust-ci.yml, rust-e2e.yml) to use a `c-` prefix, eliminating naming overlap with the setup config (config.yml). This fixes the "Conflicting pipeline parameters" error that occurs when API-triggered pipelines (e.g. from opgitgovernance bot) pass non-default parameter values. The path-filtering mapping in config.yml bridges between the setup parameter names (used by API triggers) and the new continuation parameter names.
5134cdf to
8f9569d
Compare
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
main.yml,rust-ci.yml,rust-e2e.yml) to use ac-prefix, eliminating naming overlap with the setup config (config.yml){"message":"Conflicting pipeline parameters."}error that occurs when API-triggered pipelines (e.g. fromopgitgovernancebot) pass non-default parameter valuesconfig.ymlbridges between the setup parameter names (used by API triggers) and the newc-prefixed continuation parameter namesContext
CircleCI's dynamic configuration has a limitation: when the same pipeline parameter name is defined in both the setup config and the continuation config, API-triggered pipelines fail if they pass a non-default value for that parameter. Webhook and scheduled triggers are unaffected because their parameters stay at default values.
This is a known CircleCI issue discussed in their forums:
Test plan
opgitgovernancebot no longer fail with "Conflicting pipeline parameters"*_dispatchparameters🤖 Generated with Claude Code