You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if not task_performed('issue noted', persistent=True):
322
-
saved_uuid
323
-
if showifdef('would_be_on_panel', False):
324
-
add_panel_participant(panel_email)
325
-
if should_send_to_github:
326
-
issue_url
327
-
if issue_url:
328
-
if saved_uuid:
329
-
set_feedback_github_url(saved_uuid, issue_url)
324
+
saved_uuid # Trigger the code to save locally on the server and optionally link the session answers. We do this regardless of whether we send to GitHub
325
+
if showifdef('would_be_on_panel'):
326
+
add_panel_participant(panel_email)
327
+
328
+
if should_send_to_github:
329
+
issue_url # Trigger the code to save as a GitHub issue
330
+
if issue_url and saved_uuid:
331
+
# Link the GitHub issue to the saved feedback in database
332
+
set_feedback_github_url(saved_uuid, issue_url)
333
+
else:
334
+
log(f"This form was not able to add an issue on the {github_user}/{github_repo} repo. Check your config.")
335
+
if al_error_email:
336
+
log(f"Unable to create issue on repo {github_repo}, falling back to emailing {al_error_email}")
0 commit comments