forked from yanovian/open-license-auditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicense-audit.config.yml
More file actions
29 lines (25 loc) · 1011 Bytes
/
Copy pathlicense-audit.config.yml
File metadata and controls
29 lines (25 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Config for open-license-auditor.
# Copy this file into your repo at .github/license-audit.yml, or point the Action's
# config-path input somewhere else.
#
# This entire file is optional. With no config file at all, every supported ecosystem is
# scanned and the default license buckets apply.
version: 1
# Optional: turn off specific ecosystems. Anything not listed here is scanned automatically.
# Supported names: npm, pip, cargo, go, maven, gradle, rubygems, composer, nuget.
# ecosystems:
# gradle: false
# Which bucket a license goes in. Add or remove SPDX ids freely, plain names, no wildcards
# or regex to write. Whatever bucket you put an id in here always overrides its default.
# See _docs/license-classification.md for the full default table and why each bucket exists.
licenses:
ok:
- MIT
warning:
- LGPL-2.1
critical:
- GPL-3.0
# Optional: path prefixes, relative to the repo root, that this Action should skip entirely.
# ignorePaths:
# - examples
# - test-fixtures