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
Copy file name to clipboardExpand all lines: README.md
+22-1Lines changed: 22 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ automation that can publish changes merged to 'main' branch being automatically
51
51
published to the 'asf-site'. see the procedure below.
52
52
53
53
54
-
## publishing procedure
54
+
## Publishing procedure
55
55
56
56
- create a change
57
57
- test your change according to [the previous chapter](#building-and-publishing)
@@ -75,3 +75,24 @@ git push
75
75
- wait for asf-site to be updated and published to the main site
76
76
- check again
77
77
- go to sleep
78
+
79
+
80
+
## Updating the who.md file
81
+
82
+
Every time new committers or PMC members are invited to CloudStack, the parent list maintained at: https://people.apache.org/committers-by-project.html#cloudstack is updated. This can be used to automate the generation of who.md file which is used at https://cloudstack.staged.apache.org/who/
83
+
84
+
To generate the who.md file, follow the given steps:
85
+
86
+
1. Install the necessary dependencies:
87
+
88
+
```
89
+
pip install -r requirements.txt
90
+
```
91
+
92
+
2. Run the `generate_who.py` script
93
+
94
+
```
95
+
python3 source/generate_who.py
96
+
```
97
+
98
+
NOTE: Currently, the PMC Chair's name needs to be manually updated in the script.
pmc_chair="Daniel Augusto Veronezi Salvador (gutoveronezi)"
84
+
f.write(f"**PMC Chair**: {pmc_chair}\n\n")
85
+
86
+
f.write("The following data is subject to change. The up-to-date information can be found on <a href=\"http://people.apache.org/committers-by-project.html#cloudstack-pmc\">the Apache Peoples site</a>:\n\n")
87
+
88
+
f.write("**PMC members (also in the [Committers](#committers) group)**:\n\n")
0 commit comments