You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@incubator.apache.org by jo...@apache.org on 2018/05/18 10:33:58 UTC

svn commit: r1831845 - /incubator/public/trunk/report_runbook.py

Author: johndament
Date: Fri May 18 10:33:58 2018
New Revision: 1831845

URL: http://svn.apache.org/viewvc?rev=1831845&view=rev
Log:
Adding reminders email to runbook

Modified:
    incubator/public/trunk/report_runbook.py

Modified: incubator/public/trunk/report_runbook.py
URL: http://svn.apache.org/viewvc/incubator/public/trunk/report_runbook.py?rev=1831845&r1=1831844&r2=1831845&view=diff
==============================================================================
--- incubator/public/trunk/report_runbook.py (original)
+++ incubator/public/trunk/report_runbook.py Fri May 18 10:33:58 2018
@@ -53,7 +53,19 @@ def timeline_email(options):
         ##################################################################
         {timeline}
         """).format(timeline=timeline, **options)
+def reminders_email(options):
+    return strip_indent("""
+        ##################################################################
+        # mechanical -- Send report reminders email.
+        #
+        # Several times between the end of the prior month and beginning 
+        # of the reporting month, send a reminder email to all reporting 
+        # podlings 
+        ##################################################################
 
+        # Reminders script (no more marvin tool, follow the prompts)
+        ./report_reminders.py
+        """)
 def assemble_release_list(options):
     month = ((options['month'] + 10) % 12) + 1
     year = options['year'] if month != 12 else options['year'] - 1
@@ -214,6 +226,7 @@ def main():
     text = ""
     text += header(options)
     text += timeline_email(options)
+    text += reminders_email(options)
     text += summarize_podling_reports(options)
     text += assemble_release_list(options)
     text += normalize_formatting(options)



---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@incubator.apache.org
For additional commands, e-mail: cvs-help@incubator.apache.org