File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,14 @@ to efficiently evaluate the validity of new features (even to exercise a minuscu
36
36
of the domain of inputs).
37
37
The redundancy of expert eyes looking at our code has only helped make it better.
38
38
39
- ## Members
39
+ ## Current members of the GitHub organization
40
40
41
+ A total of {{total_number_of_members}} neuroimagers have already joined us.
42
+ Becoming a member will give you access to additional forums for discussion,
43
+ suscribing notifications for events and meetings, etc.
44
+ You can request you are added to the organization by
45
+ [ creating a new issue here] ( https://github.com/nipreps/.github/issues/new/choose ) .
46
+
47
+ ![ [[ members_grid]]]
41
48
42
49
[ Neurostars.org ] : https://neurostars.org
Original file line number Diff line number Diff line change @@ -55,12 +55,14 @@ def main(argv=None):
55
55
insert_line = len (lines )
56
56
57
57
for line in reversed (lines ):
58
- if line .strip ().startswith ("## Members " ):
58
+ if line .strip ().startswith ("![[[members_grid]]] " ):
59
59
break
60
60
insert_line -= 1
61
61
62
- lines = lines [:insert_line ] + members + lines [insert_line :]
63
- target_file .write_text ("\n " .join (lines ))
62
+ lines = lines [:insert_line - 1 ] + members + lines [insert_line :]
63
+ target_file .write_text (
64
+ "\n " .join (lines ).replace ("{{total_number_of_members}}" , f"{ len (members )} " )
65
+ )
64
66
65
67
66
68
if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments