Recently we migrated to Bitbucket and started writing pipelines.
I googled and understood that 'Anchors' in pipelines are used to avoid code-redundancy in pipeline.
Example anchor
definitions:
steps:
- step: &build-test
name: Build and test
script:
- maven package
artifacts:
- target/**Is there any way that I write the 'Anchor' in a common-location and call is across multiple pipelines?