I’m having trouble recreating your issue. I’ve created a complete config file here:
version: 2.1
jobs:
master:
docker:
- image: cimg/base:2021.03
steps:
- run: echo sup
workflows:
main:
jobs:
- master:
filters:
branches:
only: master
tags:
only: /.*/
I pushed that config file up to the master
branch. Which triggered a job because we always use the exiting config. Then I checked out a new branch called testing
, committed a change, and pushed it up to GitHub. The testing branch did not trigger a job on CircleCI. That seems to be the expected behavior. Can you share more detailed steps of how to recreate the issue you’re encountering?