Skip to content

Commit 613a34d

Browse files
authored
Adding list of Maintainers (and in the fugure, triagers) on the goverance page (#6359)
Signed-off-by: alanprot <[email protected]>
1 parent 7b1b8a7 commit 613a34d

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

GOVERNANCE.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,18 @@ Triagers are contributors who assist in managing and organizing issues and pull
4242

4343
## Github Project Administration
4444

45-
Maintainers will be added to the collaborators list of the Cortex repository with "Write" access.
45+
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.
4646

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

4949
## Changes in Governance
5050

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

53+
## Cortex Team
54+
55+
${Maintainers}
56+
5357
## Other Changes
5458

5559
Unless specified above, all other changes to the project require a 2/3 majority vote.

MAINTAINERS

Lines changed: 0 additions & 5 deletions
This file was deleted.

MAINTAINERS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Maintainers
2+
3+
| Name | Email | GitHub | Company |
4+
|--------------------|-----------------------|---------------|---------------------|
5+
| Alan Protasio | [email protected] | @alanprot | Amazon Web Services |
6+
| Ben Ye | [email protected] | @yeya24 | Amazon Web Services |
7+
| Charlie Le | [email protected]> | @CharlieTLe | Apple |
8+
| Daniel Blando | [email protected] | @danielblando | Amazon Web Services |
9+
| Friedrich Gonzalez | [email protected] | @friedrichg | Adobe |

tools/website/web-pre.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mkdir -p ${OUTPUT_CONTENT_DIR}
1515
# Copy original content.
1616
cp -r ${ORIGINAL_CONTENT_DIR}/* ${OUTPUT_CONTENT_DIR}
1717
cp -r code-of-conduct.md CHANGELOG.md ${OUTPUT_CONTENT_DIR}
18-
cp GOVERNANCE.md ${OUTPUT_CONTENT_DIR}/contributing/governance.md
18+
Maintainers=`cat MAINTAINERS.md` envsubst < GOVERNANCE.md >> ${OUTPUT_CONTENT_DIR}/contributing/governance.md
1919
cp images/* ${WEBSITE_DIR}/static/images
2020

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

5555
echo "$(cat <<EOT
5656
---

0 commit comments

Comments
 (0)