I don't my pipeline run automitically when i push any changes in my project . How can i handle that ?
Hi @yosser_mahfoudh ,
to run automatically pipeline setup steps in the default section of the pipeline.
pipelines:
default:
- step:
name: Build and test
script:
- echo 'Hello pipes!'
More details provided in the Configure bitbucket-pipelines.yml guide.
i'dont want my pipeline run auto when i push some changes to my remote repository .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you don't want to run your pipeline automatically you could setup custom instead:
custom - Defines pipelines that can only be triggered manually or scheduled from the Bitbucket Cloud interface.
pipelines:
custom: # Pipelines that are triggered manually
sonar: # The name that is displayed in the list in the Bitbucket Cloud GUI
- step:
script:
- echo "Manual triggers for Sonar are awesome!"
deployment-to-prod: # Another display name
- step:
script:
- echo "Manual triggers for deployments are awesome!"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.