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
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'):
317
326
add_panel_participant(panel_email)
327
+
318
328
if should_send_to_github:
319
-
issue_url
320
-
if issue_url:
321
-
if saved_uuid:
322
-
set_feedback_github_url(saved_uuid, issue_url)
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)
323
333
else:
324
-
al_error_email
325
334
log(f"This form was not able to add an issue on the {github_user}/{github_repo} repo. Check your config.")
326
-
if al_error_email and not is_likely_spam(issue_template.content):
335
+
if al_error_email:
327
336
log(f"Unable to create issue on repo {github_repo}, falling back to emailing {al_error_email}")
0 commit comments