Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

pipeline won’t start on pull-request

Ievgen Koshevyi September 26, 2025

In my yaml file i have code block

pipelines:
pull-requests:
dev:
- step:
name: Plan projects (dev)
script:
- export WORKSPACE=dev
- make plan

 but pipeline won’t start.

2 answers

0 votes
Curtis
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 29, 2025

With the provided YAML, the Pull Request will only trigger if the source branch of the Pull Request is named exactly "dev". If it is named "dev-ABC-123" or dev/ABC-123-Changes" it will not be triggered. If you want anything starting with "dev" to be triggered it should be changed with a wildcard to pick up anything that matches.

pipelines:
pull-requests:
dev*:
- step:
name: Plan projects (dev)
script:
- export WORKSPACE=dev
- make plan

The only change I made was adding an asterisk after dev.  

0 votes
Mark C
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 29, 2025

Hi @Ievgen Koshevyi

Thank you for reaching out to the community.

Could you confirm if the commit or update is originating from the source branch of the existing pull request?

Regards,
Mark C

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events