Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Running Pipelines on Specific Branch Commit

Chris Mellor May 3, 2017

Hi,

I want Pipelines to run when I make a push to a non-master branch.

The branch I have is called new-feature

Here is my bitbucket-pipelines.yml fille

 

image: 
name: voodoosms/pipeline_testing
username: $DH_USER
password: $DH_PASS
email: $DH_EMAIL

pipelines:
branches:
master:
- step:
script:
- echo "this is the master branch"
new-feature:
- step:
script:
- echo "this is the new-feature branch"

 

When I make a commit in the non-master branch and push the code, Pipelines does not run on that branch at all...

On master, it runs first time with no issues.

Is my configuration file wrong causing newly pushed code to not use Pipelines?

Thanks for your time.

Chris

 

 

1 answer

2 votes
Chris Mellor May 3, 2017

I figured it out.

The formatting was wrong

This worked

pipelines:
branches:
master:
- step:
script:
- <code here>
new-feature:
- step:
script:
- echo "this is the new-feature branch"

 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events