Add @theletterf as docs codeowner (#6830)

cc @theletterf
This commit is contained in:
Mateusz Rzeszutek 2022-10-07 21:08:34 +02:00 committed by GitHub
parent 7117f4226d
commit 709ab76dd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

8
.github/component_owners.yml vendored Normal file
View File

@ -0,0 +1,8 @@
# this file is used by .github/workflows/assign-reviewers.yml
components:
CHANGELOG.md:
- theletterf
docs:
- theletterf
README.md:
- theletterf

15
.github/workflows/assign-reviewers.yml vendored Normal file
View File

@ -0,0 +1,15 @@
# assigns reviewers to pull requests in a similar way as CODEOWNERS, but doesn't require reviewers
# to have write access to the repository
# see .github/component_owners.yaml for the list of components and their owners
name: Assign reviewers
on:
# pull_request_target is needed instead of just pull_request
# because repository write permission is needed to assign reviewers
pull_request_target:
jobs:
assign-reviewers:
runs-on: ubuntu-latest
steps:
- uses: dyladan/component-owners@main