|
1 | 1 | # dependency-review-action
|
2 | 2 |
|
3 |
| -- [Overview](#overview) |
4 |
| -- [Installation](#installation) |
5 |
| -- [Configuration](#configuration) |
6 |
| -- [Using dependency review action to block a pull request from being merged](#using-dependency-review-action-to-block-a-pull-request-from-being-merged) |
7 |
| -- [Outputs](#outputs) |
8 |
| -- [Getting help](#getting-help) |
9 |
| -- [Contributing](#contributing) |
10 |
| -- [License](#license) |
| 3 | +- [dependency-review-action](#dependency-review-action) |
| 4 | + - [Overview](#overview) |
| 5 | + - [Viewing the results](#viewing-the-results) |
| 6 | + - [Installation](#installation) |
| 7 | + - [Installation (standard)](#installation-standard) |
| 8 | + - [Installation (GitHub Enterprise Server)](#installation-github-enterprise-server) |
| 9 | + - [Configuration](#configuration) |
| 10 | + - [Configuration options](#configuration-options) |
| 11 | + - [Configuration methods](#configuration-methods) |
| 12 | + - [Option 1: Using inline configuration](#option-1-using-inline-configuration) |
| 13 | + - [Option 2: Using an external configuration file](#option-2-using-an-external-configuration-file) |
| 14 | + - [`OTHER` in license strings](#other-in-license-strings) |
| 15 | + - [Further information](#further-information) |
| 16 | + - [Using dependency review action to block a pull request from being merged](#using-dependency-review-action-to-block-a-pull-request-from-being-merged) |
| 17 | + - [Outputs](#outputs) |
| 18 | + - [Getting help](#getting-help) |
| 19 | + - [Contributing](#contributing) |
| 20 | + - [License](#license) |
11 | 21 |
|
12 | 22 | ## Overview
|
13 | 23 |
|
@@ -206,15 +216,12 @@ You can use an external configuration file to specify settings for this action.
|
206 | 216 | 3. Create the configuration file in the path you specified for `config-file`.
|
207 | 217 | 4. In the configuration file, specify your chosen settings.
|
208 | 218 | ```yaml
|
209 |
| - fail_on_severity: 'critical' |
210 |
| - allow_licenses: |
| 219 | + fail-on-severity: 'critical' |
| 220 | + allow-licenses: |
211 | 221 | - 'GPL-3.0'
|
212 | 222 | - 'BSD-3-Clause'
|
213 | 223 | - 'MIT'
|
214 | 224 | ```
|
215 |
| - > [!NOTE] |
216 |
| - > For external configuration files, the option names use underscores instead of dashes. |
217 |
| - > Example: `fail_on_severity` |
218 | 225 |
|
219 | 226 | #### `OTHER` in license strings
|
220 | 227 |
|
|
0 commit comments