I have the following Bitbucket Pipeline in place.
But whenever I push to the master branch it does not trigger the pipeline.
I need to manually trigger the pipeline, and if I do so it works fine. But I want to make sure on every commit it triggers the pipeline automatically.
Content of bitbucket-pipelines.yml
Note: The code below is valid & have checked it here
UPDATE:
Sometimes pipelines trigger with delay, so be patient with that and see after a few minutes, and in case of active bitbucket incidents, you can wait for it to get fixed.
- Pipeline started triggering automatically the day after.
That was strange and I also tried creating a new repository, but it didn't work there as well.
Hi @Lav Shah
Welcome to the Community!!
Go ahead and try this starter template
# Template NodeJS build
# This template allows you to validate your NodeJS code.
# The workflow allows running tests and code linting on the default branch.
image: node:16
pipelines:
default:
- parallel:
- step:
name: Build and Test
caches:
- node
script:
- npm install
- npm test
- step:
name: Code linting
script:
- npm install eslint
- npx eslint .
caches:
- node
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.