CircleCI-Public / path-filtering-orb

MIT License
24 stars 57 forks source link

Multiple YAML Anchor tags not getting parsed propetly #107

Open CodeBooster97 opened 2 months ago

CodeBooster97 commented 2 months ago

Orb version:

1.0.0

What happened:

The following yaml anchor tag is generated in the CI:

 staging: &staging
    <<: *ci_config

which is wrong. I miss two tags.

Expected behavior:

Take all anchor tags and combine them. My continue CI File has this config.

  staging: &staging
    <<: *staging_parameters
    <<: *staging_branch_filters
    <<: *ci_config

Only the last merge key is taken into account when generating the ci.yml.