My Central template has below
export: true
definitions:
steps:
- step &1
- step &2
- step &3
pipelines:
master:
- step *1
- step *2
Project based template:
pipelines:
branches:
master:
import: shared-pipeline:branch:master
Now my question is can i create project specific steps in the project based template if so whats the syntax.
Thanks