Skip to content

Commit

Permalink
Incorporate suggestions from @stevepiercy
Browse files Browse the repository at this point in the history
  • Loading branch information
davisagli authored Sep 20, 2024
1 parent 7b78e57 commit ba516be
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/mr.roboto/src/mr/roboto/subscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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)

Expand All @@ -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)

Expand Down

0 comments on commit ba516be

Please sign in to comment.