Skip to content

Commit ecbe8f4

Browse files
authored
Merge pull request #803 from cloudfoundry/extend-description-of-inactive-user-pr
Add more details for refute options in inactive user pr
2 parents fedb37f + 588a350 commit ecbe8f4

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

org/org_user_management.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,12 +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"
114-
" two weeks to refute this revocation, if they wish."
119+
" two weeks to refute this revocation, if they wish by commenting on this pull-request\n"
120+
"and open a new pull-request to be re-added as contributor after this one is merged.\n"
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."
115123
)
116124

117125
@staticmethod

0 commit comments

Comments
 (0)