You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add repository guidelines and list of repositories (#105)
Includes relevent issue form templates used in the repository lifecycle section
Fixes: #27Fixes: #82
Co-authored-by: Bill Mulligan <[email protected]>
Co-authored-by: Joe Stringer <[email protected]>
Signed-off-by: Katie Struthers <[email protected]>
description: Request the addition of a repository.
3
+
body:
4
+
- type: input
5
+
id: repository-name
6
+
attributes:
7
+
label: Repository Name
8
+
validations:
9
+
required: true
10
+
- type: dropdown
11
+
id: type
12
+
attributes:
13
+
label: Type
14
+
options:
15
+
- New
16
+
- Donated
17
+
- Fork
18
+
validations:
19
+
required: true
20
+
- type: input
21
+
id: repository-url
22
+
attributes:
23
+
label: Repository URL
24
+
description: Only needed for donated or fork repository types.
25
+
validations:
26
+
required: false
27
+
- type: dropdown
28
+
id: proposed-scope
29
+
attributes:
30
+
label: Proposed Scope
31
+
description: To learn more about each scope, visit [REPOSITORY-GUIDELINES.md](https://github.com/cilium/community/blob/main/REPOSITORIES.md#scope).
32
+
options:
33
+
- Core
34
+
- Ecosystem
35
+
validations:
36
+
required: true
37
+
- type: textarea
38
+
id: motivation
39
+
attributes:
40
+
label: Motivation for Request
41
+
description: Describe why you believe this repository should be added, including why you chose its proposed scope.
42
+
render: markdown
43
+
validations:
44
+
required: true
45
+
- type: textarea
46
+
id: readme
47
+
attributes:
48
+
label: README
49
+
description: Please ensure the README describes the intent of the repository and has usage examples. You can paste the contents of the README below or provide an external link.
50
+
render: markdown
51
+
validations:
52
+
required: true
53
+
- type: input
54
+
id: license
55
+
attributes:
56
+
label: License
57
+
description: Please ensure that the license adheres to one of the [approved licenses](https://github.com/cncf/foundation/blob/main/allowed-third-party-license-policy.md).
58
+
validations:
59
+
required: true
60
+
- type: checkboxes
61
+
id: terms
62
+
attributes:
63
+
label: Code of Conduct
64
+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/cilium/cilium/blob/main/CODE_OF_CONDUCT.md).
65
+
options:
66
+
- label: I agree to follow Cilium's Code of Conduct
67
+
required: true
68
+
- type: checkboxes
69
+
id: prerequisites
70
+
attributes:
71
+
label: To be filled by a Cilium committer
72
+
description: Please ensure this repository adheres to the following guidelines.
73
+
options:
74
+
- label: README describes the intent of the repository and has usage examples
75
+
required: false
76
+
- label: Adheres to one of the [approved licenses](https://github.com/cncf/foundation/blob/main/allowed-third-party-license-policy.md)
77
+
required: false
78
+
- label: Approved new repository is added into the appropriate list in [REPOSITORIES.md](https://github.com/cilium/community/blob/main/REPOSITORIES.md)
0 commit comments