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.
Automatic Build is not triggering on open Pull request - once i create a branch, commit, push and create Pull request (PR). The automatic build is NOT triggering. due to which i am not sure if build is success or not and i cant merge to master.
What do we need to do ? (it use to work but suddenly stopped working past 2 days)
Hi @Dharmendra
Welcome to the community!
Just to confirm the behavior did you check and confirm if your YAML has the "pull-request" triggers option? You need this pipeline trigger to trigger the build so it started when you create a pull request and that the branches glob patterns is configured correctly as the following example:
pipelines: pull-requests: '**': #this runs as default for any branch not elsewhere defined - step: script: - ... feature/*: #any branch with a feature prefix - step: script: - ... branches: #these will run on every push of the branch staging: - step: script: - ...
If all is configured correctly, then navigate to repositories settings > Webhook > click view request for pipelines and locate the one that has pull request created/updated triggers and enable the history. Then reproduce the issue and view the history logs to see if the triggers actually trigger or not. If there are no logs when you create a new pull request then most likely there's an issue with the Webhook and may need to investigate the issue further.
I hope this helps.
Cheers,
Syahrul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.