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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,641,245
Community Members
 
Community Events
196
Community Groups

Parallel Pipelines: How to ignore the default if the PR is raised?

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?

1 answer

1 accepted

1 vote
Answer accepted
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Nov 11, 2020

Hello,

I assume that the use case you are referring to is an open pull request from e.g.
feature-branch -> master, and when new commits are pushed to feature-branch then run only the PR build and skip the default for feature-branch?

If so, then you can do the following: let's say you want to push 3 commits to feature-branch. In the commit message of the last commit, include

[skip ci]

so the commit message might look like

Creating files X and Y [skip ci]

This way, when you push, the default build won't run on the latest commit of feature-branch, but the PR build will still run.

Please feel free to let me know if this works for you and if you have any questions.

Kind regards,
Theodora

That is really helpful hint to add to the commit message.

Like Theodora Boudale likes this

its not working in my case

If i use [skip ci] in my commit message ,default build won't run on the latest commit of feature-branch, but the PR build also not running.

Luca
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Jul 24, 2023

Same here, the `[skip ci]` skips the CI altogether

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events