-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incorporate suggestions from @stevepiercy
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -216,6 +216,7 @@ def check_membership(self, json_data): | |
class ContributorsAgreementSigned(PullRequestSubscriber): | ||
def __init__(self, event): | ||
self.cla_url = "https://plone.org/foundation/contributors-agreement" # noqa | ||
self.cla_email = "[email protected]" | ||
self.github_help_setup_email_url = "https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/adding-an-email-address-to-your-github-account" # noqa | ||
self.status_context = "Plone Contributors Agreement verifier" | ||
|
||
|
@@ -256,6 +257,9 @@ def run(self): | |
"please allow a week for your agreement to be processed.\n" | ||
"Once it is processed, you will receive an email invitation " | ||
"to join the `plone` GitHub organization as a Contributor." | ||
"\n\n" | ||
"If after a week, you have not received an invitation, then " | ||
f"please contact {self.cla_email}." | ||
) | ||
self.g_issue.create_comment(body=msg) | ||
|
||
|
@@ -272,6 +276,11 @@ def run(self): | |
f"Learn about the Plone Contributor Agreement: {self.cla_url} " | ||
f"How to add more emails to your GitHub account: " | ||
f"{self.github_help_setup_email_url} " | ||
"\n\n" | ||
"If you have sent in your Plone Contributor Agreement, " | ||
"and received an invitation to join the Plone GitHub organization, " | ||
"but your emails are not known, then you might need to add " | ||
"the email address on your Agreement to your GitHub account." | ||
) | ||
self.g_issue.create_comment(body=msg) | ||
|
||
|