Hello everyone. I am new to CircleCI and I am trying to setup the maven for java image for 2.1 while using orbs.
I am playing around with the sample maven config for java provided by the initial setup page.
For some reason I still get build statuses for non-master branches under the project pipelines section even though I have explicitly specified in my config.yaml from the circleci-project-setup branch in my repository to filter for only the master branch.
I get these errors for non master branches.
“No configuration was found in your project.”
This is what my config.yaml looks like in my circleci-project-setup branch inside of my project’s repository.
version: 2.1
orbs:
maven: circleci/maven@0.0.12
workflows:
maven_test:
jobs:
- maven/test: # checkout, build, test, and upload test results
filters:
branches:
only: master
Do I need to have a config.yaml on every branch of my project?
Why are my filters not working.
Any help will be appreciated.