-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREUSE.toml
More file actions
147 lines (135 loc) · 3.29 KB
/
REUSE.toml
File metadata and controls
147 lines (135 loc) · 3.29 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# SPDX-FileCopyrightText: 2026 Deutsche Telekom AG
#
# SPDX-License-Identifier: CC0-1.0
# See https://reuse.software/spec-3.2/#reusetoml for specification
version = 1
# GitHub workflows - Apache-2.0
[[annotations]]
path = [".github/workflows/*.yml"]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "Apache-2.0"
# Go source files - Apache-2.0
[[annotations]]
path = [
"main.go",
"cmd/*.go",
"api/**/*.go",
"internal/**/*.go",
"pkg/**/*.go",
"test/**/*.go",
"hack/boilerplate.go.txt"
]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "Apache-2.0"
# Configuration files - CC0-1.0
[[annotations]]
path = [
".copilotignore",
".dockerignore",
".gitignore",
".golangci.yml",
".yamllint.yml",
".vscode/**",
"Dockerfile",
"Makefile",
"PROJECT",
"Tiltfile",
"tilt-*.yaml",
"versions.env",
"go.mod",
"go.sum",
"kind-with-registry.sh"
]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "CC0-1.0"
# GitHub files - CC0-1.0
[[annotations]]
path = [
".github/**/*.yml",
".github/**/*.md",
".github/ISSUE_TEMPLATE/**",
".github/CODEOWNERS"
]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "CC0-1.0"
# Kubernetes/Helm configuration - Apache-2.0
[[annotations]]
path = [
"config/**/*.yaml",
"config/**/*.yml",
"chart/**/*.yaml",
"chart/**/*.yml",
"chart/**/*.tpl",
"chart/**/*.txt",
"chart/**/*.json",
"chart/**/.helmignore"
]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "Apache-2.0"
# Test fixtures and data - CC0-1.0
[[annotations]]
path = [
"test/**/*.yaml",
"test/**/*.yml",
"test/**/*.json",
"test/**/*.http",
"test/**/README.md",
"test/**/.gitkeep"
]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "CC0-1.0"
# Documentation - CC0-1.0
[[annotations]]
path = [
"AGENTS.md",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"docs/**/*.md",
"!docs/proposals/**/*.md",
"docs/**/*.yaml",
"docs/**/*.docx",
"docs/**/*.drawio",
"docs/**/*.bkp",
"docs/**/*.png",
"chart/**/*.md"
]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "CC0-1.0"
# Proposals - CC-BY-4.0 (design documents)
# Uses 'aggregate' precedence so this annotation applies uniformly
# in addition to any in-file SPDX headers.
[[annotations]]
path = ["docs/proposals/**/*.md"]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "CC-BY-4.0"
# Hack scripts - Apache-2.0
[[annotations]]
path = ["hack/**/*.sh"]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "Apache-2.0"
# E2E test documentation - CC0-1.0
[[annotations]]
path = [
"test/e2e/*.md",
"test/e2e/testdata/**/*.md"
]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "CC0-1.0"
# Kind config files - CC0-1.0
[[annotations]]
path = ["test/e2e/kind-config-*.yaml"]
precedence = "aggregate"
SPDX-FileCopyrightText = "2026 Deutsche Telekom AG"
SPDX-License-Identifier = "CC0-1.0"