You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
So i have a repo with two projects and a common folder
looks like thing like:
```
|
|-Proj1
|-Common
|-Proj2
```
Proj1 and Proj2 both include Common in their project files.
I'm trying to get CI to build smart here.
IF (files in common were changed) {
build both projects
} ELSE {
IF (files in Proj 1 were changed) {
build proj 1
} ELSE {
build proj 2
}
}
Something like this. Any thoughts?