You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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.
...hey are a part of us, shaping how we interact with the world around us. The same holds true for programming languages when we think about how different kinds of vulnerabilities raise their heads in t...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.