Files and Folder Exclusions

The jit-config.yml configuration file is used to enable exclusion of specific paths from Jit monitoring. This file is automatically created in the .jit directory of the repository selected for GitHub integration. Paths defined in this file are excluded from all repositories in your organization. You can define path exclusions unique to a specific repository by adding a .jit/jit-config.yml to the selected repository.

folders:
  - path: /abc
    exclude:
      - /inner
      - /inner/*
  - path: /foo
    exclude:
      - /example1-dir

🚧

The code blocks below are for illustrative purposes and are not valid jit-config.yml files.

# Combining the mapping in this organization-level jit-config.yml file...
folders:
  - path: /abc
    exclude:
      - /inner
      - /inner/*
  - path: /foo
    exclude:
      - /example1-dir
 
#... With the mapping in this repository-level jit-config.yml file...
folders:
  - path: /bar
    exclude:
      - /dir
  - path: /foo
    exclude:
      - /example2-dir
      
#... Results in exclusion behavior within the repository identical to this mapping...
folders:
  - path: /abc
    exclude:
      - /inner
      - /inner/*
  - path: /bar
    exclude:
      - /dir
  - path: /foo
    exclude:
      - /example2-dir
folders:
  # Excluding a directory and inner files
  - path: /abc
    exclude:
      - /inner
      - /inner/*

  # Excluding a single file
  - path: /def
    exclude:
      - /excluded.txt

  # Excluding a directory only
  - path: /ghi
    exclude: [ /inner/ ]

  # Excluding a directory only ending without a slash
  - path: /jkl
    exclude:
      - /inner

  # Excluding inner files only
  - path: /mno
    exclude:
      - /inner/*

  # Exclude patterns doesn't have to start with a slash
  - path: /pqr
    exclude:
      - inner/*

  # Exclude everything starting with a ./
  - path: /stu
    exclude:
      - ./*

  # Exclude everything with '*'
  - path: /vwx
    exclude:
      - '*'

To configure folder exclusion at the organization level—

  1. Locate jit-config.yml in the .jit directory of the repository selected for GitHub integration.
  2. Edit jit-config.yml to define paths to exclude. Glob patterns are supported.

To configure folder exclusion for a specific repository—

  1. Create a folder titled .jit in the root directory of any repo containing paths you want to exclude from Jit monitoring
  2. Create a file within this directory titled jit-config.yml.
  3. Edit jit-config.yml to define paths to exclude. Glob patterns are supported.

📘

Monorepo support

If you are already using a jit-config.ymlfile to enable dependency scanning within a monorepo, use this existing jit-config.ymlfile to define paths to exclude.