Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding list of Maintainers on the governance page #6359

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion GOVERNANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,18 @@ Triagers are contributors who assist in managing and organizing issues and pull

## Github Project Administration

Maintainers will be added to the collaborators list of the Cortex repository with "Write" access.
Maintainers will be added to the collaborators list of the Cortex repository with "Write" access while Triagers will be added to the collaborators list of the Cortex repository with "Triage" access.

After 6 months a maintainer will be given "Admin" access to the Cortex repository.

## Changes in Governance

All changes in Governance require a 2/3 majority vote.

## Cortex Team

${Maintainers}

## Other Changes

Unless specified above, all other changes to the project require a 2/3 majority vote.
Expand Down
5 changes: 0 additions & 5 deletions MAINTAINERS

This file was deleted.

9 changes: 9 additions & 0 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
### Maintainers

| Name | Email | GitHub | Company |
|--------------------|-----------------------|---------------|---------------------|
| Alan Protasio | [email protected] | @alanprot | Amazon Web Services |
| Ben Ye | [email protected] | @yeya24 | Amazon Web Services |
| Charlie Le | [email protected]> | @CharlieTLe | Apple |
| Daniel Blando | [email protected] | @danielblando | Amazon Web Services |
| Friedrich Gonzalez | [email protected] | @friedrichg | Adobe |
4 changes: 2 additions & 2 deletions tools/website/web-pre.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mkdir -p ${OUTPUT_CONTENT_DIR}
# Copy original content.
cp -r ${ORIGINAL_CONTENT_DIR}/* ${OUTPUT_CONTENT_DIR}
cp -r code-of-conduct.md CHANGELOG.md ${OUTPUT_CONTENT_DIR}
cp GOVERNANCE.md ${OUTPUT_CONTENT_DIR}/contributing/governance.md
Maintainers=`cat MAINTAINERS.md` envsubst < GOVERNANCE.md >> ${OUTPUT_CONTENT_DIR}/contributing/governance.md
cp images/* ${WEBSITE_DIR}/static/images

# Add headers to special CODE_OF_CONDUCT.md, CHANGELOG.md and README.md files.
Expand Down Expand Up @@ -50,7 +50,7 @@ weight: 1
---
EOT
)" > ${OUTPUT_CONTENT_DIR}/contributing/governance.md
tail -n +2 GOVERNANCE.md >> ${OUTPUT_CONTENT_DIR}/contributing/governance.md
Maintainers=`cat MAINTAINERS.md` envsubst < GOVERNANCE.md | tail -n +2 >> ${OUTPUT_CONTENT_DIR}/contributing/governance.md

echo "$(cat <<EOT
---
Expand Down
Loading