> ## Documentation Index
> Fetch the complete documentation index at: https://bazel-pr-29927.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# VENDOR.bazel files

Methods available in VENDOR.bazel files.

## Members

* [ignore](#ignore)
* [pin](#pin)

## ignore

```
None ignore(*args)
```

Ignore this repo from vendoring. Bazel will never vendor it or use the corresponding directory (if exists) while building in vendor mode.

### Parameters

| Parameter | Description                                                |
| --------- | ---------------------------------------------------------- |
| `args`    | required  The canonical repo names of the repos to ignore. |

## pin

```
None pin(*args)
```

Pin the contents of this repo under the vendor directory. Bazel will not update this repo while vendoring, and will use the vendored source as if there is a --override\_repository flag when building in vendor mode

### Parameters

| Parameter | Description                                             |
| --------- | ------------------------------------------------------- |
| `args`    | required  The canonical repo names of the repos to pin. |
