-
Notifications
You must be signed in to change notification settings - Fork 3
/
.licenserc.yaml
53 lines (53 loc) · 1.72 KB
/
.licenserc.yaml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
# SPDX-FileCopyrightText: 2024 Lifely
# SPDX-License-Identifier: EUPL-1.2+
#
# Configuration file for https://github.com/apache/skywalking-eyes
# to perform checks (and optionally fixes) on SPDX copyright headers in source files
header:
license:
content: |
SPDX-FileCopyrightText: 2024 Lifely
SPDX-License-Identifier: EUPL-1.2+
pattern: |
SPDX-FileCopyrightText: .*
SPDX-License-Identifier: EUPL-1\.2\+
paths:
- '**'
paths-ignore:
- 'build'
- 'certificates'
- 'config'
- 'docs'
- 'gradle'
# Exclude Helm Chart files because the 'Azure Kubernetes Bake' GitHub Action that we use cannot
# deal with SPDX headers in these files. See: https://github.com/Azure/k8s-bake/issues/117
- 'helm'
- 'scripts'
- 'target'
- 'wildfly-*'
- '**/*.md'
- '**/node_modules'
# SPDX license headers cannot be added to JSON files so we ignore them
# there are ways to link licensing information to JSON files however; see e.g. https://reuse.software/faq/
- '**/**.json'
- '**/**.txt'
- '**/dist'
- 'gradlew'
- 'gradlew.bat'
- '.kotlin/**'
- '.github/CODEOWNERS'
- '.mvn/**'
- 'mvnw.cmd'
- 'mvnw'
- 'src/main/resources/api-specs/**'
- 'src/main/resources/cmmn/**'
- 'src/main/resources/openapi-generator-templates/**'
- 'src/main/resources/policies/policies'
# ignore Flyway DB migration files without SPDX headers
# adding SPDX headers to these files would break the migration on existing databases
- 'src/main/resources/schemas/V34__*.sql'
- 'src/main/resources/schemas/V38__*.sql'
- 'src/main/resources/schemas/V39__*.sql'
- 'src/main/resources/schemas/V40__*.sql'
comment: on-failure