I am having a pipeline as follows:
...
pipelines:
default:
- parallel:
- step: name: 'Build and Test'
caches: - node
script:
- npm install
- npm test
...
pull-requests:
'**': # All
- parallel:
- step:
If I have a pull request open, I would like to ignore the default and keep only the check of the PR. Is it feasible?