Hi, I have set up circleci for a private repo in a GitHub organization but there is an issue. No builds are triggered after a push and new branches aren’t picked up. This is my config.yml
version: 2.1
orbs:
snyk: snyk/snyk@1.1.2
aws-s3: circleci/aws-s3@3.0.0
jobs:
pre-build:
working_directory: ~/repo
docker:
- image: cimg/node:current
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
- run:
name: Install Dependencies
command: yarn
- save_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
- run:
name: Run Tests
command: yarn test
- snyk/scan:
fail-on-issues: false
monitor-on-build: false
severity-threshold: high
workflows:
build-workflow:
jobs:
- pre-build