Skip to content
This repository was archived by the owner on Dec 2, 2025. It is now read-only.

Commit 8ad602b

Browse files
authored
Add repo roles: (#17)
## Description This is needed to enable the repo roles defined by the community here: tinkerbell/org#10 ## Why is this needed Fixes: # ## How Has This Been Tested? ## How are existing users impacted? What migration steps/scripts do we need? ## Checklist: I have: - [ ] updated the documentation and/or roadmap (if required) - [ ] added unit or e2e tests - [ ] provided instructions on how to upgrade
2 parents 8841032 + 506bc90 commit 8ad602b

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.github/settings.yml @mmlb
2+
/.github/CODEOWNERS @mmlb

.github/settings.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Collaborators: give specific users access to this repository.
2+
# See https://docs.github.com/en/rest/reference/repos#add-a-repository-collaborator for available options
3+
collaborators:
4+
# Maintainers, should also be added to the .github/CODEOWNERS file as owners of this settings.yml file.
5+
- username: mmlb
6+
permission: maintain
7+
# Approvers
8+
- username: tstromberg
9+
permission: push
10+
# Reviewers
11+
- username: rawkode
12+
permission: triage
13+
14+
# Note: `permission` is only valid on organization-owned repositories.
15+
# The permission to grant the collaborator. Can be one of:
16+
# * `pull` - can pull, but not push to or administer this repository.
17+
# * `push` - can pull and push, but not administer this repository.
18+
# * `admin` - can pull, push and administer this repository.
19+
# * `maintain` - Recommended for project managers who need to manage the repository without access to sensitive or destructive actions.
20+
# * `triage` - Recommended for contributors who need to proactively manage issues and pull requests without write access.

0 commit comments

Comments
 (0)