Skip to content

Commit 588a350

Browse files
committed
Add details for the promotion rules
1 parent f3f2655 commit 588a350

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

org/org_user_management.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,20 @@ def get_inactive_users_msg(self, users_to_delete, tagusers):
106106
"https://github.com/cloudfoundry/community/blob/main/toc/rfc/rfc-0025-define-"
107107
"criteria-and-removal-process-for-inactive-members.md#remove-the-membership-to-the-cloud-foundry-github-organization"
108108
)
109+
110+
rfc_promotion_rules = (
111+
"https://github.com/cloudfoundry/community/blob/main/toc/rfc/rfc-0008-role-change-process.md#proposal"
112+
)
113+
109114
user_tagging_prefix = "@" if tagusers else ""
110115
users_as_list = "\n".join(str(user_tagging_prefix + s) for s in users_to_delete)
111116
return (
112117
f"According to the rules for inactivity defined in [RFC-0025]({rfc}) following users will be deleted:\n"
113118
f"{users_as_list}\nAccording to the [revocation policy in the RFC]({rfc_revocation_rules}), users have"
114119
" two weeks to refute this revocation, if they wish by commenting on this pull-request\n"
115120
"and open a new pull-request to be re-added as contributor after this one is merged.\n"
116-
"As alternative if you are active in a working group you could apply for a role in that working group."
121+
f"As alternative, if you are active in a working group please check the [promotion rules]({rfc_promotion_rules})\n"
122+
"and if you are eligible and wish apply for a role in that working group."
117123
)
118124

119125
@staticmethod

0 commit comments

Comments
 (0)